diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 5ae5880f855..3fa873744a7 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -36,6 +36,7 @@ Release History **IOT** * Fix #2531: Add convenience arguments for hub update. +* Fix #8323: Add missing parameters to create storage custom endpoint. **Key Vault** diff --git a/src/azure-cli/azure/cli/command_modules/iot/_help.py b/src/azure-cli/azure/cli/command_modules/iot/_help.py index 1ad0ae4ef14..290a9405885 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/_help.py +++ b/src/azure-cli/azure/cli/command_modules/iot/_help.py @@ -683,7 +683,8 @@ az iot hub routing-endpoint create --resource-group MyResourceGroup --hub-name MyIotHub \\ --endpoint-name S1 --endpoint-type azurestoragecontainer --endpoint-resource-group "[Resource Group]" \\ --endpoint-subscription-id {SubscriptionId} --connection-string {ConnectionString} \\ - --container-name {ContainerName} + --container-name {ContainerName} --batch-frequency 100 --chunk-size 100 \\ + --ff {iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm} """ helps['iot hub routing-endpoint delete'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/iot/_params.py b/src/azure-cli/azure/cli/command_modules/iot/_params.py index adcf9ae6145..671f144cb1e 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/_params.py +++ b/src/azure-cli/azure/cli/command_modules/iot/_params.py @@ -203,6 +203,17 @@ def load_arguments(self, _): # pylint: disable=too-many-statements help='Encoding format for the container. The default is AVRO. ' 'Note that this field is applicable only for blob container endpoints.') + with self.argument_context('iot hub routing-endpoint create') as c: + c.argument('batch_frequency', options_list=['--batch-frequency', '-b'], type=int, + help='Request batch frequency in seconds. The maximum amount of time that can elapse before data is' + ' written to a blob, between 60 and 720 seconds.') + c.argument('chunk_size_window', options_list=['--chunk-size', '-w'], type=int, + help='Request chunk size in megabytes(MB). The maximum size of blobs, between 10 and 500 MB.') + c.argument('file_name_format', options_list=['--file-name-format', '--ff'], + help='File name format for the blob. The file name format must contain {iothub},' + ' {partition}, {YYYY}, {MM}, {DD}, {HH} and {mm} fields. All parameters are' + ' mandatory but can be reordered with or without delimiters.') + with self.argument_context('iot hub certificate') as c: c.argument('certificate_path', options_list=['--path', '-p'], type=file_type, completer=FilesCompleter([".cer", ".pem"]), help='The path to the file containing the certificate.') 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 cb8ba68d3a9..8a330e291dd 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/custom.py +++ b/src/azure-cli/azure/cli/command_modules/iot/custom.py @@ -666,7 +666,8 @@ def iot_hub_get_stats(client, hub_name, resource_group_name=None): def iot_hub_routing_endpoint_create(cmd, client, hub_name, endpoint_name, endpoint_type, endpoint_resource_group, endpoint_subscription_id, connection_string, container_name=None, encoding=None, - resource_group_name=None): + resource_group_name=None, batch_frequency=300, chunk_size_window=300, + file_name_format='{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}'): resource_group_name = _ensure_resource_group_name(client, resource_group_name, hub_name) hub = iot_hub_get(cmd, client, hub_name, resource_group_name) if EndpointType.EventHub.value == endpoint_type.lower(): @@ -706,7 +707,10 @@ def iot_hub_routing_endpoint_create(cmd, client, hub_name, endpoint_name, endpoi subscription_id=endpoint_subscription_id, resource_group=endpoint_resource_group, container_name=container_name, - encoding=encoding.lower() if encoding else EncodingFormat.AVRO.value + encoding=encoding.lower() if encoding else EncodingFormat.AVRO.value, + file_name_format=file_name_format, + batch_frequency_in_seconds=batch_frequency, + max_chunk_size_in_bytes=(chunk_size_window * 1048576) ) ) return client.iot_hub_resource.create_or_update(resource_group_name, hub_name, hub, {'IF-MATCH': hub.etag}) 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 922c1981989..615d963339a 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 @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-09T01:24: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":"2019-11-15T01:31:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:24:28 GMT + - Fri, 15 Nov 2019 01:32:01 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 09 Nov 2019 01:24:29 GMT + - Fri, 15 Nov 2019 01:32:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 pragma: - no-cache server: @@ -114,7 +114,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 response: body: string: '' @@ -126,11 +126,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 09 Nov 2019 01:24:47 GMT + - Fri, 15 Nov 2019 01:32:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 pragma: - no-cache server: @@ -159,7 +159,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 09 Nov 2019 01:24:50 GMT + - Fri, 15 Nov 2019 01:32:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 pragma: - no-cache server: @@ -204,7 +204,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 response: body: string: '' @@ -216,11 +216,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 09 Nov 2019 01:24:53 GMT + - Fri, 15 Nov 2019 01:32:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 pragma: - no-cache server: @@ -249,7 +249,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 response: body: string: '' @@ -261,11 +261,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 09 Nov 2019 01:24:56 GMT + - Fri, 15 Nov 2019 01:32:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 pragma: - no-cache server: @@ -294,10 +294,370 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/262739bd-d51c-4e84-b95d-ea37968a26ac?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/iothubteststorage1","name":"iothubteststorage1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-09T01:24:29.3669027Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-09T01:24:29.3669027Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-09T01:24:29.2887392Z","primaryEndpoints":{"blob":"https://iothubteststorage1.blob.core.windows.net/","queue":"https://iothubteststorage1.queue.core.windows.net/","table":"https://iothubteststorage1.table.core.windows.net/","file":"https://iothubteststorage1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubteststorage1-secondary.blob.core.windows.net/","queue":"https://iothubteststorage1-secondary.queue.core.windows.net/","table":"https://iothubteststorage1-secondary.table.core.windows.net/"}}}' + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:32:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/0ddf1ddf-7acd-4ca4-9633-ed38930841e5?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/iothubteststorage1","name":"iothubteststorage1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-15T01:32:03.4764654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-15T01:32:03.4764654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T01:32:03.4139448Z","primaryEndpoints":{"blob":"https://iothubteststorage1.blob.core.windows.net/","queue":"https://iothubteststorage1.queue.core.windows.net/","table":"https://iothubteststorage1.table.core.windows.net/","file":"https://iothubteststorage1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubteststorage1-secondary.blob.core.windows.net/","queue":"https://iothubteststorage1-secondary.queue.core.windows.net/","table":"https://iothubteststorage1-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -306,7 +666,7 @@ interactions: content-type: - application/json date: - - Sat, 09 Nov 2019 01:24:59 GMT + - Fri, 15 Nov 2019 01:32:57 GMT expires: - '-1' pragma: @@ -346,18 +706,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01 response: body: - string: '{"value":[{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affandarrgdisks341","name":"affandarrgdisks341","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-27T07:39:19.0878964Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-27T07:39:19.0878964Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-27T07:39:18.9316589Z","primaryEndpoints":{"blob":"https://affandarrgdisks341.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"dfs":"https://cs291d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs291d126603decx467axbe2.z13.web.core.windows.net/","blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/distributed","name":"distributed","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-23T07:38:49.5363280Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-23T07:38:49.5363280Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-23T07:38:49.4738429Z","primaryEndpoints":{"blob":"https://distributed.blob.core.windows.net/","queue":"https://distributed.queue.core.windows.net/","table":"https://distributed.table.core.windows.net/","file":"https://distributed.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Storage/storageAccounts/sansundevicecapture","name":"sansundevicecapture","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-14T22:25:25.6937795Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-14T22:25:25.6937795Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-14T22:25:25.6468966Z","primaryEndpoints":{"dfs":"https://sansundevicecapture.dfs.core.windows.net/","web":"https://sansundevicecapture.z13.web.core.windows.net/","blob":"https://sansundevicecapture.blob.core.windows.net/","queue":"https://sansundevicecapture.queue.core.windows.net/","table":"https://sansundevicecapture.table.core.windows.net/","file":"https://sansundevicecapture.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherresion","name":"shishuotherresion","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:44:06.9557009Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:44:06.9557009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:44:06.8776146Z","primaryEndpoints":{"dfs":"https://shishuotherresion.dfs.core.windows.net/","web":"https://shishuotherresion.z13.web.core.windows.net/","blob":"https://shishuotherresion.blob.core.windows.net/","queue":"https://shishuotherresion.queue.core.windows.net/","table":"https://shishuotherresion.table.core.windows.net/","file":"https://shishuotherresion.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherresion2","name":"shishuotherresion2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:49:13.0321492Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:49:13.0321492Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-04T23:49:12.9540132Z","primaryEndpoints":{"blob":"https://shishuotherresion2.blob.core.windows.net/","queue":"https://shishuotherresion2.queue.core.windows.net/","table":"https://shishuotherresion2.table.core.windows.net/","file":"https://shishuotherresion2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReshantDS/providers/Microsoft.Storage/storageAccounts/stgsrta2n4er2ggo","name":"stgsrta2n4er2ggo","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T21:39:52.5394541Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T21:39:52.5394541Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-09T21:39:52.4613633Z","primaryEndpoints":{"blob":"https://stgsrta2n4er2ggo.blob.core.windows.net/","queue":"https://stgsrta2n4er2ggo.queue.core.windows.net/","table":"https://stgsrta2n4er2ggo.table.core.windows.net/","file":"https://stgsrta2n4er2ggo.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReshantDS/providers/Microsoft.Storage/storageAccounts/storagepzbpi","name":"storagepzbpi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"IotSuiteType":"DeviceSimulation"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T21:51:23.4146713Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T21:51:23.4146713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-09T21:51:23.3678160Z","primaryEndpoints":{"blob":"https://storagepzbpi.blob.core.windows.net/","queue":"https://storagepzbpi.queue.core.windows.net/","table":"https://storagepzbpi.table.core.windows.net/","file":"https://storagepzbpi.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/tttttt1","name":"tttttt1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-05T18:52:50.3618694Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-05T18:52:50.3618694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-05T18:52:50.2368612Z","primaryEndpoints":{"blob":"https://tttttt1.blob.core.windows.net/","queue":"https://tttttt1.queue.core.windows.net/","table":"https://tttttt1.table.core.windows.net/","file":"https://tttttt1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"dfs":"https://avichlogs.dfs.core.windows.net/","web":"https://avichlogs.z20.web.core.windows.net/","blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avichlogs-secondary.dfs.core.windows.net/","web":"https://avichlogs-secondary.z20.web.core.windows.net/","blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aajollyiothubcit","name":"aajollyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-25T00:27:13.5643392Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-25T00:27:13.5643392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-25T00:27:13.2082018Z","primaryEndpoints":{"blob":"https://aajollyiothubcit.blob.core.windows.net/","queue":"https://aajollyiothubcit.queue.core.windows.net/","table":"https://aajollyiothubcit.table.core.windows.net/","file":"https://aajollyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affandarrgdisks205","name":"affandarrgdisks205","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0574943Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0574943Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-11T19:17:39.0152228Z","primaryEndpoints":{"blob":"https://affandarrgdisks205.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affanwj","name":"affanwj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0731104Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0731104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-07-25T14:44:53.0125173Z","primaryEndpoints":{"blob":"https://affanwj.blob.core.windows.net/","queue":"https://affanwj.queue.core.windows.net/","table":"https://affanwj.table.core.windows.net/","file":"https://affanwj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostorage5xxujd6p","name":"contosostorage5xxujd6p","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T22:51:43.9668860Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T22:51:43.9668860Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T22:51:43.9043780Z","primaryEndpoints":{"blob":"https://contosostorage5xxujd6p.blob.core.windows.net/","queue":"https://contosostorage5xxujd6p.queue.core.windows.net/","table":"https://contosostorage5xxujd6p.table.core.windows.net/","file":"https://contosostorage5xxujd6p.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragedb2fnfau","name":"contosostoragedb2fnfau","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:00:16.3760229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:00:16.3760229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:00:16.3135343Z","primaryEndpoints":{"blob":"https://contosostoragedb2fnfau.blob.core.windows.net/","queue":"https://contosostoragedb2fnfau.queue.core.windows.net/","table":"https://contosostoragedb2fnfau.table.core.windows.net/","file":"https://contosostoragedb2fnfau.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragedriub37i","name":"contosostoragedriub37i","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:02:36.5626576Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:02:36.5626576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:02:36.4845302Z","primaryEndpoints":{"blob":"https://contosostoragedriub37i.blob.core.windows.net/","queue":"https://contosostoragedriub37i.queue.core.windows.net/","table":"https://contosostoragedriub37i.table.core.windows.net/","file":"https://contosostoragedriub37i.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragefcur53q2","name":"contosostoragefcur53q2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:08:25.9625532Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:08:25.9625532Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:08:25.9000516Z","primaryEndpoints":{"blob":"https://contosostoragefcur53q2.blob.core.windows.net/","queue":"https://contosostoragefcur53q2.queue.core.windows.net/","table":"https://contosostoragefcur53q2.table.core.windows.net/","file":"https://contosostoragefcur53q2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"dfs":"https://cs491d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs491d126603decx467axbe2.z22.web.core.windows.net/","blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/damonbiothubcit","name":"damonbiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-25T23:40:05.6210207Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-25T23:40:05.6210207Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-25T23:40:05.5116139Z","primaryEndpoints":{"blob":"https://damonbiothubcit.blob.core.windows.net/","queue":"https://damonbiothubcit.queue.core.windows.net/","table":"https://damonbiothubcit.table.core.windows.net/","file":"https://damonbiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://damonbiothubcit-secondary.blob.core.windows.net/","queue":"https://damonbiothubcit-secondary.queue.core.windows.net/","table":"https://damonbiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"dfs":"https://dextermiotdefaultevent.dfs.core.windows.net/","web":"https://dextermiotdefaultevent.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dextermiotdefaultevent-secondary.dfs.core.windows.net/","web":"https://dextermiotdefaultevent-secondary.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdsaudittestrpbay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdsaudittestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdssecuritytestrpbay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdssecuritytestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdsshoeboxtestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdstestrpbay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdstestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubshoeboxtestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/hshamiiothubcit","name":"hshamiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-22T23:02:11.0052130Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-22T23:02:11.0052130Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T23:02:10.3456245Z","primaryEndpoints":{"blob":"https://hshamiiothubcit.blob.core.windows.net/","queue":"https://hshamiiothubcit.queue.core.windows.net/","table":"https://hshamiiothubcit.table.core.windows.net/","file":"https://hshamiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jacoimbaiothubcit","name":"jacoimbaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T15:03:28.0830672Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T15:03:28.0830672Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T15:03:25.8198567Z","primaryEndpoints":{"blob":"https://jacoimbaiothubcit.blob.core.windows.net/","queue":"https://jacoimbaiothubcit.queue.core.windows.net/","table":"https://jacoimbaiothubcit.table.core.windows.net/","file":"https://jacoimbaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jobeeiothubcit","name":"jobeeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T15:00:39.7472272Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T15:00:39.7472272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T15:00:39.4776135Z","primaryEndpoints":{"blob":"https://jobeeiothubcit.blob.core.windows.net/","queue":"https://jobeeiothubcit.queue.core.windows.net/","table":"https://jobeeiothubcit.table.core.windows.net/","file":"https://jobeeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Storage/storageAccounts/juanstore1","name":"juanstore1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:07:14.7134115Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:07:14.7134115Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:07:14.6196558Z","primaryEndpoints":{"dfs":"https://juanstore1.dfs.core.windows.net/","web":"https://juanstore1.z22.web.core.windows.net/","blob":"https://juanstore1.blob.core.windows.net/","queue":"https://juanstore1.queue.core.windows.net/","table":"https://juanstore1.table.core.windows.net/","file":"https://juanstore1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://juanstore1-secondary.dfs.core.windows.net/","web":"https://juanstore1-secondary.z22.web.core.windows.net/","blob":"https://juanstore1-secondary.blob.core.windows.net/","queue":"https://juanstore1-secondary.queue.core.windows.net/","table":"https://juanstore1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kuncongiothubcit","name":"kuncongiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T03:07:08.0715363Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T03:07:08.0715363Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T03:07:07.2454155Z","primaryEndpoints":{"blob":"https://kuncongiothubcit.blob.core.windows.net/","queue":"https://kuncongiothubcit.queue.core.windows.net/","table":"https://kuncongiothubcit.table.core.windows.net/","file":"https://kuncongiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/rezasrgdiag324","name":"rezasrgdiag324","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-27T20:13:30.0500067Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-27T20:13:30.0500067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T20:13:29.8781262Z","primaryEndpoints":{"blob":"https://rezasrgdiag324.blob.core.windows.net/","queue":"https://rezasrgdiag324.queue.core.windows.net/","table":"https://rezasrgdiag324.table.core.windows.net/","file":"https://rezasrgdiag324.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + string: '{"value":[{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affandarrgdisks341","name":"affandarrgdisks341","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-27T07:39:19.0878964Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-27T07:39:19.0878964Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-27T07:39:18.9316589Z","primaryEndpoints":{"blob":"https://affandarrgdisks341.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"dfs":"https://cs291d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs291d126603decx467axbe2.z13.web.core.windows.net/","blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Storage/storageAccounts/csharpiotuapeastus2","name":"csharpiotuapeastus2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-12T20:03:00.1684482Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-12T20:03:00.1684482Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-12T20:03:00.0902910Z","primaryEndpoints":{"blob":"https://csharpiotuapeastus2.blob.core.windows.net/","queue":"https://csharpiotuapeastus2.queue.core.windows.net/","table":"https://csharpiotuapeastus2.table.core.windows.net/","file":"https://csharpiotuapeastus2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/distributed","name":"distributed","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-23T07:38:49.5363280Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-23T07:38:49.5363280Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-23T07:38:49.4738429Z","primaryEndpoints":{"blob":"https://distributed.blob.core.windows.net/","queue":"https://distributed.queue.core.windows.net/","table":"https://distributed.table.core.windows.net/","file":"https://distributed.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Storage/storageAccounts/sansundevicecapture","name":"sansundevicecapture","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-14T22:25:25.6937795Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-14T22:25:25.6937795Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-14T22:25:25.6468966Z","primaryEndpoints":{"dfs":"https://sansundevicecapture.dfs.core.windows.net/","web":"https://sansundevicecapture.z13.web.core.windows.net/","blob":"https://sansundevicecapture.blob.core.windows.net/","queue":"https://sansundevicecapture.queue.core.windows.net/","table":"https://sansundevicecapture.table.core.windows.net/","file":"https://sansundevicecapture.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherresion","name":"shishuotherresion","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:44:06.9557009Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:44:06.9557009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:44:06.8776146Z","primaryEndpoints":{"dfs":"https://shishuotherresion.dfs.core.windows.net/","web":"https://shishuotherresion.z13.web.core.windows.net/","blob":"https://shishuotherresion.blob.core.windows.net/","queue":"https://shishuotherresion.queue.core.windows.net/","table":"https://shishuotherresion.table.core.windows.net/","file":"https://shishuotherresion.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherresion2","name":"shishuotherresion2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:49:13.0321492Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:49:13.0321492Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-04T23:49:12.9540132Z","primaryEndpoints":{"blob":"https://shishuotherresion2.blob.core.windows.net/","queue":"https://shishuotherresion2.queue.core.windows.net/","table":"https://shishuotherresion2.table.core.windows.net/","file":"https://shishuotherresion2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReshantDS/providers/Microsoft.Storage/storageAccounts/stgsrta2n4er2ggo","name":"stgsrta2n4er2ggo","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T21:39:52.5394541Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T21:39:52.5394541Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-09T21:39:52.4613633Z","primaryEndpoints":{"blob":"https://stgsrta2n4er2ggo.blob.core.windows.net/","queue":"https://stgsrta2n4er2ggo.queue.core.windows.net/","table":"https://stgsrta2n4er2ggo.table.core.windows.net/","file":"https://stgsrta2n4er2ggo.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReshantDS/providers/Microsoft.Storage/storageAccounts/storagepzbpi","name":"storagepzbpi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"IotSuiteType":"DeviceSimulation"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T21:51:23.4146713Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T21:51:23.4146713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-09T21:51:23.3678160Z","primaryEndpoints":{"blob":"https://storagepzbpi.blob.core.windows.net/","queue":"https://storagepzbpi.queue.core.windows.net/","table":"https://storagepzbpi.table.core.windows.net/","file":"https://storagepzbpi.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/tttttt1","name":"tttttt1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-05T18:52:50.3618694Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-05T18:52:50.3618694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-05T18:52:50.2368612Z","primaryEndpoints":{"blob":"https://tttttt1.blob.core.windows.net/","queue":"https://tttttt1.queue.core.windows.net/","table":"https://tttttt1.table.core.windows.net/","file":"https://tttttt1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"dfs":"https://avichlogs.dfs.core.windows.net/","web":"https://avichlogs.z20.web.core.windows.net/","blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avichlogs-secondary.dfs.core.windows.net/","web":"https://avichlogs-secondary.z20.web.core.windows.net/","blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aajollyiothubcit","name":"aajollyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-25T00:27:13.5643392Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-25T00:27:13.5643392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-25T00:27:13.2082018Z","primaryEndpoints":{"blob":"https://aajollyiothubcit.blob.core.windows.net/","queue":"https://aajollyiothubcit.queue.core.windows.net/","table":"https://aajollyiothubcit.table.core.windows.net/","file":"https://aajollyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affandarrgdisks205","name":"affandarrgdisks205","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0574943Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0574943Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-11T19:17:39.0152228Z","primaryEndpoints":{"blob":"https://affandarrgdisks205.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affanwj","name":"affanwj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0731104Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0731104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-07-25T14:44:53.0125173Z","primaryEndpoints":{"blob":"https://affanwj.blob.core.windows.net/","queue":"https://affanwj.queue.core.windows.net/","table":"https://affanwj.table.core.windows.net/","file":"https://affanwj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostorage5xxujd6p","name":"contosostorage5xxujd6p","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T22:51:43.9668860Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T22:51:43.9668860Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T22:51:43.9043780Z","primaryEndpoints":{"blob":"https://contosostorage5xxujd6p.blob.core.windows.net/","queue":"https://contosostorage5xxujd6p.queue.core.windows.net/","table":"https://contosostorage5xxujd6p.table.core.windows.net/","file":"https://contosostorage5xxujd6p.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragedb2fnfau","name":"contosostoragedb2fnfau","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:00:16.3760229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:00:16.3760229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:00:16.3135343Z","primaryEndpoints":{"blob":"https://contosostoragedb2fnfau.blob.core.windows.net/","queue":"https://contosostoragedb2fnfau.queue.core.windows.net/","table":"https://contosostoragedb2fnfau.table.core.windows.net/","file":"https://contosostoragedb2fnfau.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragedriub37i","name":"contosostoragedriub37i","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:02:36.5626576Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:02:36.5626576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:02:36.4845302Z","primaryEndpoints":{"blob":"https://contosostoragedriub37i.blob.core.windows.net/","queue":"https://contosostoragedriub37i.queue.core.windows.net/","table":"https://contosostoragedriub37i.table.core.windows.net/","file":"https://contosostoragedriub37i.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragefcur53q2","name":"contosostoragefcur53q2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:08:25.9625532Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:08:25.9625532Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:08:25.9000516Z","primaryEndpoints":{"blob":"https://contosostoragefcur53q2.blob.core.windows.net/","queue":"https://contosostoragefcur53q2.queue.core.windows.net/","table":"https://contosostoragefcur53q2.table.core.windows.net/","file":"https://contosostoragefcur53q2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"dfs":"https://cs491d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs491d126603decx467axbe2.z22.web.core.windows.net/","blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/damonbiothubcit","name":"damonbiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-25T23:40:05.6210207Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-25T23:40:05.6210207Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-25T23:40:05.5116139Z","primaryEndpoints":{"blob":"https://damonbiothubcit.blob.core.windows.net/","queue":"https://damonbiothubcit.queue.core.windows.net/","table":"https://damonbiothubcit.table.core.windows.net/","file":"https://damonbiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://damonbiothubcit-secondary.blob.core.windows.net/","queue":"https://damonbiothubcit-secondary.queue.core.windows.net/","table":"https://damonbiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"dfs":"https://dextermiotdefaultevent.dfs.core.windows.net/","web":"https://dextermiotdefaultevent.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dextermiotdefaultevent-secondary.dfs.core.windows.net/","web":"https://dextermiotdefaultevent-secondary.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdsaudittestrpbay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdsaudittestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdssecuritytestrpbay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdssecuritytestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdsshoeboxtestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdstestrpbay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubmdstestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dhubshoeboxtestsubay-Migrated/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"migrationstate":"Prepare","provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/hshamiiothubcit","name":"hshamiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-22T23:02:11.0052130Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-22T23:02:11.0052130Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T23:02:10.3456245Z","primaryEndpoints":{"blob":"https://hshamiiothubcit.blob.core.windows.net/","queue":"https://hshamiiothubcit.queue.core.windows.net/","table":"https://hshamiiothubcit.table.core.windows.net/","file":"https://hshamiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jacoimbaiothubcit","name":"jacoimbaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T15:03:28.0830672Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T15:03:28.0830672Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T15:03:25.8198567Z","primaryEndpoints":{"blob":"https://jacoimbaiothubcit.blob.core.windows.net/","queue":"https://jacoimbaiothubcit.queue.core.windows.net/","table":"https://jacoimbaiothubcit.table.core.windows.net/","file":"https://jacoimbaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jobeeiothubcit","name":"jobeeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T15:00:39.7472272Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T15:00:39.7472272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T15:00:39.4776135Z","primaryEndpoints":{"blob":"https://jobeeiothubcit.blob.core.windows.net/","queue":"https://jobeeiothubcit.queue.core.windows.net/","table":"https://jobeeiothubcit.table.core.windows.net/","file":"https://jobeeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Storage/storageAccounts/juanstore1","name":"juanstore1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:07:14.7134115Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:07:14.7134115Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:07:14.6196558Z","primaryEndpoints":{"dfs":"https://juanstore1.dfs.core.windows.net/","web":"https://juanstore1.z22.web.core.windows.net/","blob":"https://juanstore1.blob.core.windows.net/","queue":"https://juanstore1.queue.core.windows.net/","table":"https://juanstore1.table.core.windows.net/","file":"https://juanstore1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://juanstore1-secondary.dfs.core.windows.net/","web":"https://juanstore1-secondary.z22.web.core.windows.net/","blob":"https://juanstore1-secondary.blob.core.windows.net/","queue":"https://juanstore1-secondary.queue.core.windows.net/","table":"https://juanstore1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kuncongiothubcit","name":"kuncongiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T03:07:08.0715363Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T03:07:08.0715363Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T03:07:07.2454155Z","primaryEndpoints":{"blob":"https://kuncongiothubcit.blob.core.windows.net/","queue":"https://kuncongiothubcit.queue.core.windows.net/","table":"https://kuncongiothubcit.table.core.windows.net/","file":"https://kuncongiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/rezasrgdiag324","name":"rezasrgdiag324","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-27T20:13:30.0500067Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-27T20:13:30.0500067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T20:13:29.8781262Z","primaryEndpoints":{"blob":"https://rezasrgdiag324.blob.core.windows.net/","queue":"https://rezasrgdiag324.queue.core.windows.net/","table":"https://rezasrgdiag324.table.core.windows.net/","file":"https://rezasrgdiag324.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service Fabric","clusterName":"sfmonitoring"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sfdgsfmonitoring9772.blob.core.windows.net/","queue":"https://sfdgsfmonitoring9772.queue.core.windows.net/","table":"https://sfdgsfmonitoring9772.table.core.windows.net/","file":"https://sfdgsfmonitoring9772.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sflogssfmonitoring8971","name":"sflogssfmonitoring8971","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service - Fabric","clusterName":"sfmonitoring"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shdattaiothubcit","name":"shdattaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:48:04.9274397Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:48:04.9274397Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:48:04.5500196Z","primaryEndpoints":{"blob":"https://shdattaiothubcit.blob.core.windows.net/","queue":"https://shdattaiothubcit.queue.core.windows.net/","table":"https://shdattaiothubcit.table.core.windows.net/","file":"https://shdattaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezas3","name":"storagerezas3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-westus-vnet/subnets/AzureBastionSubnet","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-westus-vnet/subnets/GatewaySubnet","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-westus-vnet/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"13.89.231.149","action":"Allow"},{"value":"40.83.177.42","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-28T17:40:57.6999382Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-28T17:40:57.6999382Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-28T17:40:57.5437017Z","primaryEndpoints":{"dfs":"https://storagerezas3.dfs.core.windows.net/","web":"https://storagerezas3.z22.web.core.windows.net/","blob":"https://storagerezas3.blob.core.windows.net/","queue":"https://storagerezas3.queue.core.windows.net/","table":"https://storagerezas3.table.core.windows.net/","file":"https://storagerezas3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezas3-secondary.dfs.core.windows.net/","web":"https://storagerezas3-secondary.z22.web.core.windows.net/","blob":"https://storagerezas3-secondary.blob.core.windows.net/","queue":"https://storagerezas3-secondary.queue.core.windows.net/","table":"https://storagerezas3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezaswestus","name":"storagerezaswestus","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-vnet2/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"40.83.177.42","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-13T21:04:49.7907096Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-13T21:04:49.7907096Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-13T21:04:49.7438498Z","primaryEndpoints":{"dfs":"https://storagerezaswestus.dfs.core.windows.net/","web":"https://storagerezaswestus.z22.web.core.windows.net/","blob":"https://storagerezaswestus.blob.core.windows.net/","queue":"https://storagerezaswestus.queue.core.windows.net/","table":"https://storagerezaswestus.table.core.windows.net/","file":"https://storagerezaswestus.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tadessebiothubcit","name":"tadessebiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-08T17:34:50.6238099Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-08T17:34:50.6238099Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-08T17:34:50.5300772Z","primaryEndpoints":{"blob":"https://tadessebiothubcit.blob.core.windows.net/","queue":"https://tadessebiothubcit.queue.core.windows.net/","table":"https://tadessebiothubcit.table.core.windows.net/","file":"https://tadessebiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://tadessebiothubcit-secondary.blob.core.windows.net/","queue":"https://tadessebiothubcit-secondary.queue.core.windows.net/","table":"https://tadessebiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/talbueiothubcit","name":"talbueiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-30T15:52:04.3154469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-30T15:52:04.3154469Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-30T15:52:03.9250327Z","primaryEndpoints":{"blob":"https://talbueiothubcit.blob.core.windows.net/","queue":"https://talbueiothubcit.queue.core.windows.net/","table":"https://talbueiothubcit.table.core.windows.net/","file":"https://talbueiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vashiothubcit","name":"vashiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:41:21.5284299Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:41:21.5284299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:41:21.1248896Z","primaryEndpoints":{"blob":"https://vashiothubcit.blob.core.windows.net/","queue":"https://vashiothubcit.queue.core.windows.net/","table":"https://vashiothubcit.table.core.windows.net/","file":"https://vashiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/xingqianiothubcit","name":"xingqianiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-11T20:57:22.9840019Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-11T20:57:22.9840019Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-11T20:57:22.7256004Z","primaryEndpoints":{"blob":"https://xingqianiothubcit.blob.core.windows.net/","queue":"https://xingqianiothubcit.queue.core.windows.net/","table":"https://xingqianiothubcit.table.core.windows.net/","file":"https://xingqianiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/xingqianstorageaccount","name":"xingqianstorageaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T18:31:22.9738311Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T18:31:22.9738311Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T18:31:22.8957036Z","primaryEndpoints":{"dfs":"https://xingqianstorageaccount.dfs.core.windows.net/","web":"https://xingqianstorageaccount.z22.web.core.windows.net/","blob":"https://xingqianstorageaccount.blob.core.windows.net/","queue":"https://xingqianstorageaccount.queue.core.windows.net/","table":"https://xingqianstorageaccount.table.core.windows.net/","file":"https://xingqianstorageaccount.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://xingqianstorageaccount-secondary.dfs.core.windows.net/","web":"https://xingqianstorageaccount-secondary.z22.web.core.windows.net/","blob":"https://xingqianstorageaccount-secondary.blob.core.windows.net/","queue":"https://xingqianstorageaccount-secondary.queue.core.windows.net/","table":"https://xingqianstorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zadixoniothubcit","name":"zadixoniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-23T18:26:53.8441661Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-23T18:26:53.8441661Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-23T18:26:53.7660702Z","primaryEndpoints":{"blob":"https://zadixoniothubcit.blob.core.windows.net/","queue":"https://zadixoniothubcit.queue.core.windows.net/","table":"https://zadixoniothubcit.table.core.windows.net/","file":"https://zadixoniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zadixoniothubcit-secondary.blob.core.windows.net/","queue":"https://zadixoniothubcit-secondary.queue.core.windows.net/","table":"https://zadixoniothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/buildineventhubstorage","name":"buildineventhubstorage","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-23T06:03:18.0091078Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-23T06:03:18.0091078Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-23T06:03:17.9465332Z","primaryEndpoints":{"dfs":"https://buildineventhubstorage.dfs.core.windows.net/","web":"https://buildineventhubstorage.z11.web.core.windows.net/","blob":"https://buildineventhubstorage.blob.core.windows.net/","queue":"https://buildineventhubstorage.queue.core.windows.net/","table":"https://buildineventhubstorage.table.core.windows.net/","file":"https://buildineventhubstorage.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available","secondaryLocation":"japanwest","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://buildineventhubstorage-secondary.dfs.core.windows.net/","web":"https://buildineventhubstorage-secondary.z11.web.core.windows.net/","blob":"https://buildineventhubstorage-secondary.blob.core.windows.net/","queue":"https://buildineventhubstorage-secondary.queue.core.windows.net/","table":"https://buildineventhubstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"dfs":"https://cs791d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs791d126603decx467axbe2.z21.web.core.windows.net/","blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"dfs":"https://routingrunsttestac.dfs.core.windows.net/","blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Storage/storageAccounts/stgf545buocxeei6","name":"stgf545buocxeei6","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T21:06:24.0580710Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T21:06:24.0580710Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T21:06:23.9955153Z","primaryEndpoints":{"blob":"https://stgf545buocxeei6.blob.core.windows.net/","queue":"https://stgf545buocxeei6.queue.core.windows.net/","table":"https://stgf545buocxeei6.table.core.windows.net/","file":"https://stgf545buocxeei6.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Storage/storageAccounts/storagenprr4","name":"storagenprr4","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T21:18:32.9989254Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T21:18:32.9989254Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T21:18:32.9207965Z","primaryEndpoints":{"blob":"https://storagenprr4.blob.core.windows.net/","queue":"https://storagenprr4.queue.core.windows.net/","table":"https://storagenprr4.table.core.windows.net/","file":"https://storagenprr4.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affandtfxb036","name":"affandtfxb036","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0103583Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0103583Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-12-07T02:55:10.3145263Z","primaryEndpoints":{"blob":"https://affandtfxb036.blob.core.windows.net/","queue":"https://affandtfxb036.queue.core.windows.net/","table":"https://affandtfxb036.table.core.windows.net/","file":"https://affandtfxb036.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostorage77df4rls","name":"contosostorage77df4rls","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T01:55:09.0699798Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T01:55:09.0699798Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T01:55:08.9918614Z","primaryEndpoints":{"blob":"https://contosostorage77df4rls.blob.core.windows.net/","queue":"https://contosostorage77df4rls.queue.core.windows.net/","table":"https://contosostorage77df4rls.table.core.windows.net/","file":"https://contosostorage77df4rls.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragerfwt5aot","name":"contosostoragerfwt5aot","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T01:39:20.4330175Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T01:39:20.4330175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T01:39:20.3548403Z","primaryEndpoints":{"blob":"https://contosostoragerfwt5aot.blob.core.windows.net/","queue":"https://contosostoragerfwt5aot.queue.core.windows.net/","table":"https://contosostoragerfwt5aot.table.core.windows.net/","file":"https://contosostoragerfwt5aot.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-vishalg-databricks-f4lwnoiidgq7q/providers/Microsoft.Storage/storageAccounts/dbstorageoxf2n67ok6bty","name":"dbstorageoxf2n67ok6bty","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-29T18:57:55.4996511Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-29T18:57:55.4996511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-01-29T18:57:55.3433747Z","primaryEndpoints":{"dfs":"https://dbstorageoxf2n67ok6bty.dfs.core.windows.net/","blob":"https://dbstorageoxf2n67ok6bty.blob.core.windows.net/","table":"https://dbstorageoxf2n67ok6bty.table.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/iotdistributedt93de","name":"iotdistributedt93de","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-24T05:35:06.6371813Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-24T05:35:06.6371813Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-24T05:35:06.5590523Z","primaryEndpoints":{"blob":"https://iotdistributedt93de.blob.core.windows.net/","queue":"https://iotdistributedt93de.queue.core.windows.net/","table":"https://iotdistributedt93de.table.core.windows.net/","file":"https://iotdistributedt93de.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/rezasrgdiag","name":"rezasrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-20T00:02:54.0309940Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-20T00:02:54.0309940Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-20T00:02:53.9528607Z","primaryEndpoints":{"blob":"https://rezasrgdiag.blob.core.windows.net/","queue":"https://rezasrgdiag.queue.core.windows.net/","table":"https://rezasrgdiag.table.core.windows.net/","file":"https://rezasrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/rmcontosostorage","name":"rmcontosostorage","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T02:16:41.8656246Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T02:16:41.8656246Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T02:16:41.7875167Z","primaryEndpoints":{"blob":"https://rmcontosostorage.blob.core.windows.net/","queue":"https://rmcontosostorage.queue.core.windows.net/","table":"https://rmcontosostorage.table.core.windows.net/","file":"https://rmcontosostorage.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-02T22:42:27.1963124Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-02T22:42:27.1963124Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T22:42:27.0713107Z","primaryEndpoints":{"blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezas2","name":"storagerezas2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"13.89.231.149","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-20T00:16:55.1062115Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-20T00:16:55.1062115Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-20T00:16:55.0124639Z","primaryEndpoints":{"dfs":"https://storagerezas2.dfs.core.windows.net/","web":"https://storagerezas2.z19.web.core.windows.net/","blob":"https://storagerezas2.blob.core.windows.net/","queue":"https://storagerezas2.queue.core.windows.net/","table":"https://storagerezas2.table.core.windows.net/","file":"https://storagerezas2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezas2-secondary.dfs.core.windows.net/","web":"https://storagerezas2-secondary.z19.web.core.windows.net/","blob":"https://storagerezas2-secondary.blob.core.windows.net/","queue":"https://storagerezas2-secondary.queue.core.windows.net/","table":"https://storagerezas2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezasgen2","name":"storagerezasgen2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-04T23:18:38.0103229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-04T23:18:38.0103229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-04T23:18:37.9322092Z","primaryEndpoints":{"dfs":"https://storagerezasgen2.dfs.core.windows.net/","web":"https://storagerezasgen2.z19.web.core.windows.net/","blob":"https://storagerezasgen2.blob.core.windows.net/","queue":"https://storagerezasgen2.queue.core.windows.net/","table":"https://storagerezasgen2.table.core.windows.net/","file":"https://storagerezasgen2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezasgen2-secondary.dfs.core.windows.net/","web":"https://storagerezasgen2-secondary.z19.web.core.windows.net/","blob":"https://storagerezasgen2-secondary.blob.core.windows.net/","queue":"https://storagerezasgen2-secondary.queue.core.windows.net/","table":"https://storagerezasgen2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherregion3","name":"shishuotherregion3","type":"Microsoft.Storage/storageAccounts","location":"southindia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:51:35.9212747Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:51:35.9212747Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:51:35.8745844Z","primaryEndpoints":{"dfs":"https://shishuotherregion3.dfs.core.windows.net/","web":"https://shishuotherregion3.z30.web.core.windows.net/","blob":"https://shishuotherregion3.blob.core.windows.net/","queue":"https://shishuotherregion3.queue.core.windows.net/","table":"https://shishuotherregion3.table.core.windows.net/","file":"https://shishuotherregion3.file.core.windows.net/"},"primaryLocation":"southindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezas","name":"storagerezas","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T16:35:37.9255146Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T16:35:37.9255146Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-19T16:35:37.8473943Z","primaryEndpoints":{"dfs":"https://storagerezas.dfs.core.windows.net/","web":"https://storagerezas.z29.web.core.windows.net/","blob":"https://storagerezas.blob.core.windows.net/","queue":"https://storagerezas.queue.core.windows.net/","table":"https://storagerezas.table.core.windows.net/","file":"https://storagerezas.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available","secondaryLocation":"southindia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezas-secondary.dfs.core.windows.net/","web":"https://storagerezas-secondary.z29.web.core.windows.net/","blob":"https://storagerezas-secondary.blob.core.windows.net/","queue":"https://storagerezas-secondary.queue.core.windows.net/","table":"https://storagerezas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/askhuradatalakestorage","name":"askhuradatalakestorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-04T22:06:45.1521743Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-04T22:06:45.1521743Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-04T22:06:45.0896741Z","primaryEndpoints":{"dfs":"https://askhuradatalakestorage.dfs.core.windows.net/","web":"https://askhuradatalakestorage.z5.web.core.windows.net/","blob":"https://askhuradatalakestorage.blob.core.windows.net/","queue":"https://askhuradatalakestorage.queue.core.windows.net/","table":"https://askhuradatalakestorage.table.core.windows.net/","file":"https://askhuradatalakestorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://askhuradatalakestorage-secondary.dfs.core.windows.net/","web":"https://askhuradatalakestorage-secondary.z5.web.core.windows.net/","blob":"https://askhuradatalakestorage-secondary.blob.core.windows.net/","queue":"https://askhuradatalakestorage-secondary.queue.core.windows.net/","table":"https://askhuradatalakestorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/askhurateststorage","name":"askhurateststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T20:24:52.1315737Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T20:24:52.1315737Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-19T20:24:52.0690578Z","primaryEndpoints":{"dfs":"https://askhurateststorage.dfs.core.windows.net/","web":"https://askhurateststorage.z5.web.core.windows.net/","blob":"https://askhurateststorage.blob.core.windows.net/","queue":"https://askhurateststorage.queue.core.windows.net/","table":"https://askhurateststorage.table.core.windows.net/","file":"https://askhurateststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://askhurateststorage-secondary.dfs.core.windows.net/","web":"https://askhurateststorage-secondary.z5.web.core.windows.net/","blob":"https://askhurateststorage-secondary.blob.core.windows.net/","queue":"https://askhurateststorage-secondary.queue.core.windows.net/","table":"https://askhurateststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-west-us2/providers/Microsoft.Storage/storageAccounts/dmpypinwestus2diag","name":"dmpypinwestus2diag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-12T16:40:55.6756523Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-12T16:40:55.6756523Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-12T16:40:55.6131873Z","primaryEndpoints":{"blob":"https://dmpypinwestus2diag.blob.core.windows.net/","queue":"https://dmpypinwestus2diag.queue.core.windows.net/","table":"https://dmpypinwestus2diag.table.core.windows.net/","file":"https://dmpypinwestus2diag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/iothubteststorage1","name":"iothubteststorage1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-09T01:24:29.3669027Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-09T01:24:29.3669027Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-09T01:24:29.2887392Z","primaryEndpoints":{"blob":"https://iothubteststorage1.blob.core.windows.net/","queue":"https://iothubteststorage1.queue.core.windows.net/","table":"https://iothubteststorage1.table.core.windows.net/","file":"https://iothubteststorage1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubteststorage1-secondary.blob.core.windows.net/","queue":"https://iothubteststorage1-secondary.queue.core.windows.net/","table":"https://iothubteststorage1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"dfs":"https://johnlangstorage.dfs.core.windows.net/","web":"https://johnlangstorage.z5.web.core.windows.net/","blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://johnlangstorage-secondary.dfs.core.windows.net/","web":"https://johnlangstorage-secondary.z5.web.core.windows.net/","blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"dfs":"https://muguntest.dfs.core.windows.net/","web":"https://muguntest.z4.web.core.windows.net/","blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm115773862/providers/Microsoft.Storage/storageAccounts/icm115773862","name":"icm115773862","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-13T18:30:55.2780121Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-13T18:30:55.2780121Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-13T18:30:55.1530163Z","primaryEndpoints":{"dfs":"https://icm115773862.dfs.core.windows.net/","web":"https://icm115773862.z28.web.core.windows.net/","blob":"https://icm115773862.blob.core.windows.net/","queue":"https://icm115773862.queue.core.windows.net/","table":"https://icm115773862.table.core.windows.net/","file":"https://icm115773862.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://icm115773862-secondary.dfs.core.windows.net/","web":"https://icm115773862-secondary.z28.web.core.windows.net/","blob":"https://icm115773862-secondary.blob.core.windows.net/","queue":"https://icm115773862-secondary.queue.core.windows.net/","table":"https://icm115773862-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"dfs":"https://shishudesktopc5k9obr.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishudesktopc5k9obr-secondary.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr-secondary.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherregion","name":"shishuotherregion","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:46:57.1783917Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:46:57.1783917Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:46:57.1158631Z","primaryEndpoints":{"dfs":"https://shishuotherregion.dfs.core.windows.net/","web":"https://shishuotherregion.z28.web.core.windows.net/","blob":"https://shishuotherregion.blob.core.windows.net/","queue":"https://shishuotherregion.queue.core.windows.net/","table":"https://shishuotherregion.table.core.windows.net/","file":"https://shishuotherregion.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishuotherregion-secondary.dfs.core.windows.net/","web":"https://shishuotherregion-secondary.z28.web.core.windows.net/","blob":"https://shishuotherregion-secondary.blob.core.windows.net/","queue":"https://shishuotherregion-secondary.queue.core.windows.net/","table":"https://shishuotherregion-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/020725adls2","name":"020725adls2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-25T19:43:22.3464231Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-25T19:43:22.3464231Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-25T19:43:22.2839308Z","primaryEndpoints":{"dfs":"https://020725adls2.dfs.core.windows.net/","web":"https://020725adls2.z3.web.core.windows.net/","blob":"https://020725adls2.blob.core.windows.net/","queue":"https://020725adls2.queue.core.windows.net/","table":"https://020725adls2.table.core.windows.net/","file":"https://020725adls2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/0725adls2","name":"0725adls2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"largeFileSharesState":"Disabled","isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-25T18:20:27.5809781Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-25T18:20:27.5809781Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-25T18:20:27.5341059Z","primaryEndpoints":{"dfs":"https://0725adls2.dfs.core.windows.net/","web":"https://0725adls2.z3.web.core.windows.net/","blob":"https://0725adls2.blob.core.windows.net/","queue":"https://0725adls2.queue.core.windows.net/","table":"https://0725adls2.table.core.windows.net/","file":"https://0725adls2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AbuenDemo/providers/Microsoft.Storage/storageAccounts/abuenstorage","name":"abuenstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"largeFileSharesState":"Disabled","isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-25T16:02:15.5016002Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-25T16:02:15.5016002Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-25T16:02:15.4390715Z","primaryEndpoints":{"dfs":"https://abuenstorage.dfs.core.windows.net/","web":"https://abuenstorage.z3.web.core.windows.net/","blob":"https://abuenstorage.blob.core.windows.net/","queue":"https://abuenstorage.queue.core.windows.net/","table":"https://abuenstorage.table.core.windows.net/","file":"https://abuenstorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"dfs":"https://magaopsmontest.dfs.core.windows.net/","web":"https://magaopsmontest.z3.web.core.windows.net/","blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://magaopsmontest-secondary.dfs.core.windows.net/","web":"https://magaopsmontest-secondary.z3.web.core.windows.net/","blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishu0717adlsg2","name":"shishu0717adlsg2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-17T22:29:13.0583491Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-17T22:29:13.0583491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-17T22:29:12.9802100Z","primaryEndpoints":{"dfs":"https://shishu0717adlsg2.dfs.core.windows.net/","web":"https://shishu0717adlsg2.z3.web.core.windows.net/","blob":"https://shishu0717adlsg2.blob.core.windows.net/","queue":"https://shishu0717adlsg2.queue.core.windows.net/","table":"https://shishu0717adlsg2.table.core.windows.net/","file":"https://shishu0717adlsg2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishu0717adlsg2-secondary.dfs.core.windows.net/","web":"https://shishu0717adlsg2-secondary.z3.web.core.windows.net/","blob":"https://shishu0717adlsg2-secondary.blob.core.windows.net/","queue":"https://shishu0717adlsg2-secondary.queue.core.windows.net/","table":"https://shishu0717adlsg2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishu072701","name":"shishu072701","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-29T23:29:33.5566663Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-29T23:29:33.5566663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-29T23:29:33.4941656Z","primaryEndpoints":{"dfs":"https://shishu072701.dfs.core.windows.net/","web":"https://shishu072701.z3.web.core.windows.net/","blob":"https://shishu072701.blob.core.windows.net/","queue":"https://shishu072701.queue.core.windows.net/","table":"https://shishu072701.table.core.windows.net/","file":"https://shishu072701.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishu072701-secondary.dfs.core.windows.net/","web":"https://shishu072701-secondary.z3.web.core.windows.net/","blob":"https://shishu072701-secondary.blob.core.windows.net/","queue":"https://shishu072701-secondary.queue.core.windows.net/","table":"https://shishu072701-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/0717adls2","name":"0717adls2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-17T22:09:01.4122778Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-17T22:09:01.4122778Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-17T22:09:01.3654234Z","primaryEndpoints":{"dfs":"https://0717adls2.dfs.core.windows.net/","web":"https://0717adls2.z2.web.core.windows.net/","blob":"https://0717adls2.blob.core.windows.net/","queue":"https://0717adls2.queue.core.windows.net/","table":"https://0717adls2.table.core.windows.net/","file":"https://0717adls2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://0717adls2-secondary.dfs.core.windows.net/","web":"https://0717adls2-secondary.z2.web.core.windows.net/","blob":"https://0717adls2-secondary.blob.core.windows.net/","queue":"https://0717adls2-secondary.queue.core.windows.net/","table":"https://0717adls2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/adlsg2shishu2","name":"adlsg2shishu2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-18T00:57:05.1956333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-18T00:57:05.1956333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-18T00:57:05.1331313Z","primaryEndpoints":{"dfs":"https://adlsg2shishu2.dfs.core.windows.net/","web":"https://adlsg2shishu2.z2.web.core.windows.net/","blob":"https://adlsg2shishu2.blob.core.windows.net/","queue":"https://adlsg2shishu2.queue.core.windows.net/","table":"https://adlsg2shishu2.table.core.windows.net/","file":"https://adlsg2shishu2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adlsg2shishu2-secondary.dfs.core.windows.net/","web":"https://adlsg2shishu2-secondary.z2.web.core.windows.net/","blob":"https://adlsg2shishu2-secondary.blob.core.windows.net/","queue":"https://adlsg2shishu2-secondary.queue.core.windows.net/","table":"https://adlsg2shishu2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/dtracingrentu","name":"dtracingrentu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T17:09:26.5005892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T17:09:26.5005892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-10-10T17:09:26.4380574Z","primaryEndpoints":{"dfs":"https://dtracingrentu.dfs.core.windows.net/","web":"https://dtracingrentu.z2.web.core.windows.net/","blob":"https://dtracingrentu.blob.core.windows.net/","queue":"https://dtracingrentu.queue.core.windows.net/","table":"https://dtracingrentu.table.core.windows.net/","file":"https://dtracingrentu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dtracingrentu-secondary.dfs.core.windows.net/","web":"https://dtracingrentu-secondary.z2.web.core.windows.net/","blob":"https://dtracingrentu-secondary.blob.core.windows.net/","queue":"https://dtracingrentu-secondary.queue.core.windows.net/","table":"https://dtracingrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/vishalgstorageadlsg2","name":"vishalgstorageadlsg2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-14T20:53:55.0612336Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-14T20:53:55.0612336Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-03-14T20:53:54.9674860Z","primaryEndpoints":{"dfs":"https://vishalgstorageadlsg2.dfs.core.windows.net/","web":"https://vishalgstorageadlsg2.z2.web.core.windows.net/","blob":"https://vishalgstorageadlsg2.blob.core.windows.net/","queue":"https://vishalgstorageadlsg2.queue.core.windows.net/","table":"https://vishalgstorageadlsg2.table.core.windows.net/","file":"https://vishalgstorageadlsg2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://vishalgstorageadlsg2-secondary.dfs.core.windows.net/","web":"https://vishalgstorageadlsg2-secondary.z2.web.core.windows.net/","blob":"https://vishalgstorageadlsg2-secondary.blob.core.windows.net/","queue":"https://vishalgstorageadlsg2-secondary.queue.core.windows.net/","table":"https://vishalgstorageadlsg2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/vishalgstoragev2","name":"vishalgstoragev2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-19T17:20:49.6056996Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-19T17:20:49.6056996Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-19T17:20:49.5431447Z","primaryEndpoints":{"dfs":"https://vishalgstoragev2.dfs.core.windows.net/","web":"https://vishalgstoragev2.z2.web.core.windows.net/","blob":"https://vishalgstoragev2.blob.core.windows.net/","queue":"https://vishalgstoragev2.queue.core.windows.net/","table":"https://vishalgstoragev2.table.core.windows.net/","file":"https://vishalgstoragev2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/weatherstorage","name":"weatherstorage","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-10-20T23:58:38.4203705Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-10-20T23:58:38.4203705Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-06T22:12:27.1512669Z","primaryEndpoints":{"blob":"https://weatherstorage.blob.core.windows.net/","queue":"https://weatherstorage.queue.core.windows.net/","table":"https://weatherstorage.table.core.windows.net/","file":"https://weatherstorage.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' + Fabric","clusterName":"sfmonitoring"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shdattaiothubcit","name":"shdattaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:48:04.9274397Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:48:04.9274397Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:48:04.5500196Z","primaryEndpoints":{"blob":"https://shdattaiothubcit.blob.core.windows.net/","queue":"https://shdattaiothubcit.queue.core.windows.net/","table":"https://shdattaiothubcit.table.core.windows.net/","file":"https://shdattaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezas3","name":"storagerezas3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-westus-vnet/subnets/AzureBastionSubnet","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-westus-vnet/subnets/GatewaySubnet","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-westus-vnet/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"13.89.231.149","action":"Allow"},{"value":"40.83.177.42","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-28T17:40:57.6999382Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-28T17:40:57.6999382Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-28T17:40:57.5437017Z","primaryEndpoints":{"dfs":"https://storagerezas3.dfs.core.windows.net/","web":"https://storagerezas3.z22.web.core.windows.net/","blob":"https://storagerezas3.blob.core.windows.net/","queue":"https://storagerezas3.queue.core.windows.net/","table":"https://storagerezas3.table.core.windows.net/","file":"https://storagerezas3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezas3-secondary.dfs.core.windows.net/","web":"https://storagerezas3-secondary.z22.web.core.windows.net/","blob":"https://storagerezas3-secondary.blob.core.windows.net/","queue":"https://storagerezas3-secondary.queue.core.windows.net/","table":"https://storagerezas3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezaswestus","name":"storagerezaswestus","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/virtualNetworks/rezas-vnet2/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"40.83.177.42","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-13T21:04:49.7907096Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-13T21:04:49.7907096Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-13T21:04:49.7438498Z","primaryEndpoints":{"dfs":"https://storagerezaswestus.dfs.core.windows.net/","web":"https://storagerezaswestus.z22.web.core.windows.net/","blob":"https://storagerezaswestus.blob.core.windows.net/","queue":"https://storagerezaswestus.queue.core.windows.net/","table":"https://storagerezaswestus.table.core.windows.net/","file":"https://storagerezaswestus.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tadessebiothubcit","name":"tadessebiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-08T17:34:50.6238099Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-08T17:34:50.6238099Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-08T17:34:50.5300772Z","primaryEndpoints":{"blob":"https://tadessebiothubcit.blob.core.windows.net/","queue":"https://tadessebiothubcit.queue.core.windows.net/","table":"https://tadessebiothubcit.table.core.windows.net/","file":"https://tadessebiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://tadessebiothubcit-secondary.blob.core.windows.net/","queue":"https://tadessebiothubcit-secondary.queue.core.windows.net/","table":"https://tadessebiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/talbueiothubcit","name":"talbueiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-30T15:52:04.3154469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-30T15:52:04.3154469Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-30T15:52:03.9250327Z","primaryEndpoints":{"blob":"https://talbueiothubcit.blob.core.windows.net/","queue":"https://talbueiothubcit.queue.core.windows.net/","table":"https://talbueiothubcit.table.core.windows.net/","file":"https://talbueiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vashiothubcit","name":"vashiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:41:21.5284299Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:41:21.5284299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:41:21.1248896Z","primaryEndpoints":{"blob":"https://vashiothubcit.blob.core.windows.net/","queue":"https://vashiothubcit.queue.core.windows.net/","table":"https://vashiothubcit.table.core.windows.net/","file":"https://vashiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/xingqianiothubcit","name":"xingqianiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-11T20:57:22.9840019Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-11T20:57:22.9840019Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-11T20:57:22.7256004Z","primaryEndpoints":{"blob":"https://xingqianiothubcit.blob.core.windows.net/","queue":"https://xingqianiothubcit.queue.core.windows.net/","table":"https://xingqianiothubcit.table.core.windows.net/","file":"https://xingqianiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/xingqianstorageaccount","name":"xingqianstorageaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T18:31:22.9738311Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T18:31:22.9738311Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T18:31:22.8957036Z","primaryEndpoints":{"dfs":"https://xingqianstorageaccount.dfs.core.windows.net/","web":"https://xingqianstorageaccount.z22.web.core.windows.net/","blob":"https://xingqianstorageaccount.blob.core.windows.net/","queue":"https://xingqianstorageaccount.queue.core.windows.net/","table":"https://xingqianstorageaccount.table.core.windows.net/","file":"https://xingqianstorageaccount.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://xingqianstorageaccount-secondary.dfs.core.windows.net/","web":"https://xingqianstorageaccount-secondary.z22.web.core.windows.net/","blob":"https://xingqianstorageaccount-secondary.blob.core.windows.net/","queue":"https://xingqianstorageaccount-secondary.queue.core.windows.net/","table":"https://xingqianstorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zadixoniothubcit","name":"zadixoniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-23T18:26:53.8441661Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-23T18:26:53.8441661Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-23T18:26:53.7660702Z","primaryEndpoints":{"blob":"https://zadixoniothubcit.blob.core.windows.net/","queue":"https://zadixoniothubcit.queue.core.windows.net/","table":"https://zadixoniothubcit.table.core.windows.net/","file":"https://zadixoniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zadixoniothubcit-secondary.blob.core.windows.net/","queue":"https://zadixoniothubcit-secondary.queue.core.windows.net/","table":"https://zadixoniothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/buildineventhubstorage","name":"buildineventhubstorage","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-23T06:03:18.0091078Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-23T06:03:18.0091078Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-23T06:03:17.9465332Z","primaryEndpoints":{"dfs":"https://buildineventhubstorage.dfs.core.windows.net/","web":"https://buildineventhubstorage.z11.web.core.windows.net/","blob":"https://buildineventhubstorage.blob.core.windows.net/","queue":"https://buildineventhubstorage.queue.core.windows.net/","table":"https://buildineventhubstorage.table.core.windows.net/","file":"https://buildineventhubstorage.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available","secondaryLocation":"japanwest","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://buildineventhubstorage-secondary.dfs.core.windows.net/","web":"https://buildineventhubstorage-secondary.z11.web.core.windows.net/","blob":"https://buildineventhubstorage-secondary.blob.core.windows.net/","queue":"https://buildineventhubstorage-secondary.queue.core.windows.net/","table":"https://buildineventhubstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"dfs":"https://cs791d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs791d126603decx467axbe2.z21.web.core.windows.net/","blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"dfs":"https://routingrunsttestac.dfs.core.windows.net/","blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Storage/storageAccounts/stgarjpdm7hgl6o6","name":"stgarjpdm7hgl6o6","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-12T01:28:54.3755942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-12T01:28:54.3755942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-12T01:28:54.3131046Z","primaryEndpoints":{"blob":"https://stgarjpdm7hgl6o6.blob.core.windows.net/","queue":"https://stgarjpdm7hgl6o6.queue.core.windows.net/","table":"https://stgarjpdm7hgl6o6.table.core.windows.net/","file":"https://stgarjpdm7hgl6o6.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Storage/storageAccounts/storagevxohk","name":"storagevxohk","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-12T01:43:02.2275564Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-12T01:43:02.2275564Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-12T01:43:02.1494276Z","primaryEndpoints":{"blob":"https://storagevxohk.blob.core.windows.net/","queue":"https://storagevxohk.queue.core.windows.net/","table":"https://storagevxohk.table.core.windows.net/","file":"https://storagevxohk.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/affandtfxb036","name":"affandtfxb036","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0103583Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0103583Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-12-07T02:55:10.3145263Z","primaryEndpoints":{"blob":"https://affandtfxb036.blob.core.windows.net/","queue":"https://affandtfxb036.queue.core.windows.net/","table":"https://affandtfxb036.table.core.windows.net/","file":"https://affandtfxb036.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostorage77df4rls","name":"contosostorage77df4rls","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T01:55:09.0699798Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T01:55:09.0699798Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T01:55:08.9918614Z","primaryEndpoints":{"blob":"https://contosostorage77df4rls.blob.core.windows.net/","queue":"https://contosostorage77df4rls.queue.core.windows.net/","table":"https://contosostorage77df4rls.table.core.windows.net/","file":"https://contosostorage77df4rls.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/contosostoragerfwt5aot","name":"contosostoragerfwt5aot","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T01:39:20.4330175Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T01:39:20.4330175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T01:39:20.3548403Z","primaryEndpoints":{"blob":"https://contosostoragerfwt5aot.blob.core.windows.net/","queue":"https://contosostoragerfwt5aot.queue.core.windows.net/","table":"https://contosostoragerfwt5aot.table.core.windows.net/","file":"https://contosostoragerfwt5aot.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-vishalg-databricks-f4lwnoiidgq7q/providers/Microsoft.Storage/storageAccounts/dbstorageoxf2n67ok6bty","name":"dbstorageoxf2n67ok6bty","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-29T18:57:55.4996511Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-29T18:57:55.4996511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-01-29T18:57:55.3433747Z","primaryEndpoints":{"dfs":"https://dbstorageoxf2n67ok6bty.dfs.core.windows.net/","blob":"https://dbstorageoxf2n67ok6bty.blob.core.windows.net/","table":"https://dbstorageoxf2n67ok6bty.table.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/iotdistributedt93de","name":"iotdistributedt93de","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-24T05:35:06.6371813Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-24T05:35:06.6371813Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-24T05:35:06.5590523Z","primaryEndpoints":{"blob":"https://iotdistributedt93de.blob.core.windows.net/","queue":"https://iotdistributedt93de.queue.core.windows.net/","table":"https://iotdistributedt93de.table.core.windows.net/","file":"https://iotdistributedt93de.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/rezasrgdiag","name":"rezasrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-20T00:02:54.0309940Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-20T00:02:54.0309940Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-20T00:02:53.9528607Z","primaryEndpoints":{"blob":"https://rezasrgdiag.blob.core.windows.net/","queue":"https://rezasrgdiag.queue.core.windows.net/","table":"https://rezasrgdiag.table.core.windows.net/","file":"https://rezasrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/rmcontosostorage","name":"rmcontosostorage","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T02:16:41.8656246Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T02:16:41.8656246Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T02:16:41.7875167Z","primaryEndpoints":{"blob":"https://rmcontosostorage.blob.core.windows.net/","queue":"https://rmcontosostorage.queue.core.windows.net/","table":"https://rmcontosostorage.table.core.windows.net/","file":"https://rmcontosostorage.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-02T22:42:27.1963124Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-02T22:42:27.1963124Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T22:42:27.0713107Z","primaryEndpoints":{"blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezas2","name":"storagerezas2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"13.89.231.149","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-20T00:16:55.1062115Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-20T00:16:55.1062115Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-20T00:16:55.0124639Z","primaryEndpoints":{"dfs":"https://storagerezas2.dfs.core.windows.net/","web":"https://storagerezas2.z19.web.core.windows.net/","blob":"https://storagerezas2.blob.core.windows.net/","queue":"https://storagerezas2.queue.core.windows.net/","table":"https://storagerezas2.table.core.windows.net/","file":"https://storagerezas2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezas2-secondary.dfs.core.windows.net/","web":"https://storagerezas2-secondary.z19.web.core.windows.net/","blob":"https://storagerezas2-secondary.blob.core.windows.net/","queue":"https://storagerezas2-secondary.queue.core.windows.net/","table":"https://storagerezas2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezasgen2","name":"storagerezasgen2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-04T23:18:38.0103229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-04T23:18:38.0103229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-04T23:18:37.9322092Z","primaryEndpoints":{"dfs":"https://storagerezasgen2.dfs.core.windows.net/","web":"https://storagerezasgen2.z19.web.core.windows.net/","blob":"https://storagerezasgen2.blob.core.windows.net/","queue":"https://storagerezasgen2.queue.core.windows.net/","table":"https://storagerezasgen2.table.core.windows.net/","file":"https://storagerezasgen2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezasgen2-secondary.dfs.core.windows.net/","web":"https://storagerezasgen2-secondary.z19.web.core.windows.net/","blob":"https://storagerezasgen2-secondary.blob.core.windows.net/","queue":"https://storagerezasgen2-secondary.queue.core.windows.net/","table":"https://storagerezasgen2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherregion3","name":"shishuotherregion3","type":"Microsoft.Storage/storageAccounts","location":"southindia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:51:35.9212747Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:51:35.9212747Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:51:35.8745844Z","primaryEndpoints":{"dfs":"https://shishuotherregion3.dfs.core.windows.net/","web":"https://shishuotherregion3.z30.web.core.windows.net/","blob":"https://shishuotherregion3.blob.core.windows.net/","queue":"https://shishuotherregion3.queue.core.windows.net/","table":"https://shishuotherregion3.table.core.windows.net/","file":"https://shishuotherregion3.file.core.windows.net/"},"primaryLocation":"southindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Storage/storageAccounts/storagerezas","name":"storagerezas","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T16:35:37.9255146Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T16:35:37.9255146Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-19T16:35:37.8473943Z","primaryEndpoints":{"dfs":"https://storagerezas.dfs.core.windows.net/","web":"https://storagerezas.z29.web.core.windows.net/","blob":"https://storagerezas.blob.core.windows.net/","queue":"https://storagerezas.queue.core.windows.net/","table":"https://storagerezas.table.core.windows.net/","file":"https://storagerezas.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available","secondaryLocation":"southindia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagerezas-secondary.dfs.core.windows.net/","web":"https://storagerezas-secondary.z29.web.core.windows.net/","blob":"https://storagerezas-secondary.blob.core.windows.net/","queue":"https://storagerezas-secondary.queue.core.windows.net/","table":"https://storagerezas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/askhuradatalakestorage","name":"askhuradatalakestorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-04T22:06:45.1521743Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-04T22:06:45.1521743Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-04T22:06:45.0896741Z","primaryEndpoints":{"dfs":"https://askhuradatalakestorage.dfs.core.windows.net/","web":"https://askhuradatalakestorage.z5.web.core.windows.net/","blob":"https://askhuradatalakestorage.blob.core.windows.net/","queue":"https://askhuradatalakestorage.queue.core.windows.net/","table":"https://askhuradatalakestorage.table.core.windows.net/","file":"https://askhuradatalakestorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://askhuradatalakestorage-secondary.dfs.core.windows.net/","web":"https://askhuradatalakestorage-secondary.z5.web.core.windows.net/","blob":"https://askhuradatalakestorage-secondary.blob.core.windows.net/","queue":"https://askhuradatalakestorage-secondary.queue.core.windows.net/","table":"https://askhuradatalakestorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/askhurateststorage","name":"askhurateststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T20:24:52.1315737Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T20:24:52.1315737Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-19T20:24:52.0690578Z","primaryEndpoints":{"dfs":"https://askhurateststorage.dfs.core.windows.net/","web":"https://askhurateststorage.z5.web.core.windows.net/","blob":"https://askhurateststorage.blob.core.windows.net/","queue":"https://askhurateststorage.queue.core.windows.net/","table":"https://askhurateststorage.table.core.windows.net/","file":"https://askhurateststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://askhurateststorage-secondary.dfs.core.windows.net/","web":"https://askhurateststorage-secondary.z5.web.core.windows.net/","blob":"https://askhurateststorage-secondary.blob.core.windows.net/","queue":"https://askhurateststorage-secondary.queue.core.windows.net/","table":"https://askhurateststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-west-us2/providers/Microsoft.Storage/storageAccounts/dmpypinwestus2diag","name":"dmpypinwestus2diag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-12T16:40:55.6756523Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-12T16:40:55.6756523Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-12T16:40:55.6131873Z","primaryEndpoints":{"blob":"https://dmpypinwestus2diag.blob.core.windows.net/","queue":"https://dmpypinwestus2diag.queue.core.windows.net/","table":"https://dmpypinwestus2diag.table.core.windows.net/","file":"https://dmpypinwestus2diag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/iothubteststorage1","name":"iothubteststorage1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-15T01:32:03.4764654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-15T01:32:03.4764654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T01:32:03.4139448Z","primaryEndpoints":{"blob":"https://iothubteststorage1.blob.core.windows.net/","queue":"https://iothubteststorage1.queue.core.windows.net/","table":"https://iothubteststorage1.table.core.windows.net/","file":"https://iothubteststorage1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubteststorage1-secondary.blob.core.windows.net/","queue":"https://iothubteststorage1-secondary.queue.core.windows.net/","table":"https://iothubteststorage1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"dfs":"https://johnlangstorage.dfs.core.windows.net/","web":"https://johnlangstorage.z5.web.core.windows.net/","blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://johnlangstorage-secondary.dfs.core.windows.net/","web":"https://johnlangstorage-secondary.z5.web.core.windows.net/","blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"dfs":"https://muguntest.dfs.core.windows.net/","web":"https://muguntest.z4.web.core.windows.net/","blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm115773862/providers/Microsoft.Storage/storageAccounts/icm115773862","name":"icm115773862","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-13T18:30:55.2780121Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-13T18:30:55.2780121Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-13T18:30:55.1530163Z","primaryEndpoints":{"dfs":"https://icm115773862.dfs.core.windows.net/","web":"https://icm115773862.z28.web.core.windows.net/","blob":"https://icm115773862.blob.core.windows.net/","queue":"https://icm115773862.queue.core.windows.net/","table":"https://icm115773862.table.core.windows.net/","file":"https://icm115773862.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://icm115773862-secondary.dfs.core.windows.net/","web":"https://icm115773862-secondary.z28.web.core.windows.net/","blob":"https://icm115773862-secondary.blob.core.windows.net/","queue":"https://icm115773862-secondary.queue.core.windows.net/","table":"https://icm115773862-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"dfs":"https://shishudesktopc5k9obr.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishudesktopc5k9obr-secondary.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr-secondary.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishuotherregion","name":"shishuotherregion","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-04T23:46:57.1783917Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-04T23:46:57.1783917Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-04T23:46:57.1158631Z","primaryEndpoints":{"dfs":"https://shishuotherregion.dfs.core.windows.net/","web":"https://shishuotherregion.z28.web.core.windows.net/","blob":"https://shishuotherregion.blob.core.windows.net/","queue":"https://shishuotherregion.queue.core.windows.net/","table":"https://shishuotherregion.table.core.windows.net/","file":"https://shishuotherregion.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishuotherregion-secondary.dfs.core.windows.net/","web":"https://shishuotherregion-secondary.z28.web.core.windows.net/","blob":"https://shishuotherregion-secondary.blob.core.windows.net/","queue":"https://shishuotherregion-secondary.queue.core.windows.net/","table":"https://shishuotherregion-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/020725adls2","name":"020725adls2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-25T19:43:22.3464231Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-25T19:43:22.3464231Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-25T19:43:22.2839308Z","primaryEndpoints":{"dfs":"https://020725adls2.dfs.core.windows.net/","web":"https://020725adls2.z3.web.core.windows.net/","blob":"https://020725adls2.blob.core.windows.net/","queue":"https://020725adls2.queue.core.windows.net/","table":"https://020725adls2.table.core.windows.net/","file":"https://020725adls2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/0725adls2","name":"0725adls2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"largeFileSharesState":"Disabled","isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-25T18:20:27.5809781Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-25T18:20:27.5809781Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-25T18:20:27.5341059Z","primaryEndpoints":{"dfs":"https://0725adls2.dfs.core.windows.net/","web":"https://0725adls2.z3.web.core.windows.net/","blob":"https://0725adls2.blob.core.windows.net/","queue":"https://0725adls2.queue.core.windows.net/","table":"https://0725adls2.table.core.windows.net/","file":"https://0725adls2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AbuenDemo/providers/Microsoft.Storage/storageAccounts/abuenstorage","name":"abuenstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"largeFileSharesState":"Disabled","isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-25T16:02:15.5016002Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-25T16:02:15.5016002Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-25T16:02:15.4390715Z","primaryEndpoints":{"dfs":"https://abuenstorage.dfs.core.windows.net/","web":"https://abuenstorage.z3.web.core.windows.net/","blob":"https://abuenstorage.blob.core.windows.net/","queue":"https://abuenstorage.queue.core.windows.net/","table":"https://abuenstorage.table.core.windows.net/","file":"https://abuenstorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"dfs":"https://magaopsmontest.dfs.core.windows.net/","web":"https://magaopsmontest.z3.web.core.windows.net/","blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://magaopsmontest-secondary.dfs.core.windows.net/","web":"https://magaopsmontest-secondary.z3.web.core.windows.net/","blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishu0717adlsg2","name":"shishu0717adlsg2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-17T22:29:13.0583491Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-17T22:29:13.0583491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-17T22:29:12.9802100Z","primaryEndpoints":{"dfs":"https://shishu0717adlsg2.dfs.core.windows.net/","web":"https://shishu0717adlsg2.z3.web.core.windows.net/","blob":"https://shishu0717adlsg2.blob.core.windows.net/","queue":"https://shishu0717adlsg2.queue.core.windows.net/","table":"https://shishu0717adlsg2.table.core.windows.net/","file":"https://shishu0717adlsg2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishu0717adlsg2-secondary.dfs.core.windows.net/","web":"https://shishu0717adlsg2-secondary.z3.web.core.windows.net/","blob":"https://shishu0717adlsg2-secondary.blob.core.windows.net/","queue":"https://shishu0717adlsg2-secondary.queue.core.windows.net/","table":"https://shishu0717adlsg2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishu072701","name":"shishu072701","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-29T23:29:33.5566663Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-29T23:29:33.5566663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-29T23:29:33.4941656Z","primaryEndpoints":{"dfs":"https://shishu072701.dfs.core.windows.net/","web":"https://shishu072701.z3.web.core.windows.net/","blob":"https://shishu072701.blob.core.windows.net/","queue":"https://shishu072701.queue.core.windows.net/","table":"https://shishu072701.table.core.windows.net/","file":"https://shishu072701.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishu072701-secondary.dfs.core.windows.net/","web":"https://shishu072701-secondary.z3.web.core.windows.net/","blob":"https://shishu072701-secondary.blob.core.windows.net/","queue":"https://shishu072701-secondary.queue.core.windows.net/","table":"https://shishu072701-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/0717adls2","name":"0717adls2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-17T22:09:01.4122778Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-17T22:09:01.4122778Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-17T22:09:01.3654234Z","primaryEndpoints":{"dfs":"https://0717adls2.dfs.core.windows.net/","web":"https://0717adls2.z2.web.core.windows.net/","blob":"https://0717adls2.blob.core.windows.net/","queue":"https://0717adls2.queue.core.windows.net/","table":"https://0717adls2.table.core.windows.net/","file":"https://0717adls2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://0717adls2-secondary.dfs.core.windows.net/","web":"https://0717adls2-secondary.z2.web.core.windows.net/","blob":"https://0717adls2-secondary.blob.core.windows.net/","queue":"https://0717adls2-secondary.queue.core.windows.net/","table":"https://0717adls2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/adlsg2shishu2","name":"adlsg2shishu2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-18T00:57:05.1956333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-18T00:57:05.1956333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-18T00:57:05.1331313Z","primaryEndpoints":{"dfs":"https://adlsg2shishu2.dfs.core.windows.net/","web":"https://adlsg2shishu2.z2.web.core.windows.net/","blob":"https://adlsg2shishu2.blob.core.windows.net/","queue":"https://adlsg2shishu2.queue.core.windows.net/","table":"https://adlsg2shishu2.table.core.windows.net/","file":"https://adlsg2shishu2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adlsg2shishu2-secondary.dfs.core.windows.net/","web":"https://adlsg2shishu2-secondary.z2.web.core.windows.net/","blob":"https://adlsg2shishu2-secondary.blob.core.windows.net/","queue":"https://adlsg2shishu2-secondary.queue.core.windows.net/","table":"https://adlsg2shishu2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Storage/storageAccounts/dtracingrentu","name":"dtracingrentu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T17:09:26.5005892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T17:09:26.5005892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-10-10T17:09:26.4380574Z","primaryEndpoints":{"dfs":"https://dtracingrentu.dfs.core.windows.net/","web":"https://dtracingrentu.z2.web.core.windows.net/","blob":"https://dtracingrentu.blob.core.windows.net/","queue":"https://dtracingrentu.queue.core.windows.net/","table":"https://dtracingrentu.table.core.windows.net/","file":"https://dtracingrentu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dtracingrentu-secondary.dfs.core.windows.net/","web":"https://dtracingrentu-secondary.z2.web.core.windows.net/","blob":"https://dtracingrentu-secondary.blob.core.windows.net/","queue":"https://dtracingrentu-secondary.queue.core.windows.net/","table":"https://dtracingrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/vishalgstorageadlsg2","name":"vishalgstorageadlsg2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-14T20:53:55.0612336Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-14T20:53:55.0612336Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-03-14T20:53:54.9674860Z","primaryEndpoints":{"dfs":"https://vishalgstorageadlsg2.dfs.core.windows.net/","web":"https://vishalgstorageadlsg2.z2.web.core.windows.net/","blob":"https://vishalgstorageadlsg2.blob.core.windows.net/","queue":"https://vishalgstorageadlsg2.queue.core.windows.net/","table":"https://vishalgstorageadlsg2.table.core.windows.net/","file":"https://vishalgstorageadlsg2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://vishalgstorageadlsg2-secondary.dfs.core.windows.net/","web":"https://vishalgstorageadlsg2-secondary.z2.web.core.windows.net/","blob":"https://vishalgstorageadlsg2-secondary.blob.core.windows.net/","queue":"https://vishalgstorageadlsg2-secondary.queue.core.windows.net/","table":"https://vishalgstorageadlsg2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/vishalgstoragev2","name":"vishalgstoragev2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-19T17:20:49.6056996Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-19T17:20:49.6056996Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-19T17:20:49.5431447Z","primaryEndpoints":{"dfs":"https://vishalgstoragev2.dfs.core.windows.net/","web":"https://vishalgstoragev2.z2.web.core.windows.net/","blob":"https://vishalgstoragev2.blob.core.windows.net/","queue":"https://vishalgstoragev2.queue.core.windows.net/","table":"https://vishalgstoragev2.table.core.windows.net/","file":"https://vishalgstoragev2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/weatherstorage","name":"weatherstorage","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-10-20T23:58:38.4203705Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-10-20T23:58:38.4203705Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-06T22:12:27.1512669Z","primaryEndpoints":{"blob":"https://weatherstorage.blob.core.windows.net/","queue":"https://weatherstorage.queue.core.windows.net/","table":"https://weatherstorage.table.core.windows.net/","file":"https://weatherstorage.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '192581' + - '193732' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:25:01 GMT + - Fri, 15 Nov 2019 01:33:00 GMT expires: - '-1' pragma: @@ -369,20 +729,20 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - cbe199ac-eb0a-45d8-9431-ffecd2dac8a9 - - 68e71846-6937-44c3-a718-67983319d103 - - c9ef3091-516f-4f40-ba07-36b7111c11c0 - - 8679cc01-18fd-4c71-aaf0-64f92b11f99f - - ffa0d277-3df7-4882-940c-d18d333e2bdf - - 9986b635-0e5c-410d-8ea1-2e3afbb01bef - - 15df24bb-30a7-4aa5-9717-204a33ea275b - - c5c65dfd-d0b5-4ff7-9cdb-47f18e63e515 - - 70d371ae-2d5e-4973-aa59-cc3533a6e652 - - bb42ec6a-af14-425b-b996-bf7303669cfe - - 4066e707-7ed6-4611-9762-71c36b6cb23b - - 33c89043-0f94-4293-a4d9-7f4cc1af05e5 - - 297dc768-0dba-47fe-9751-23ea78940a1d - - d05c4755-ada8-47d0-b282-66ae427aced5 + - 94aa2d50-135e-464b-8a07-4316eb1b4de8 + - ddeba0c2-2406-4f4c-bb19-d7f084260a64 + - 8151f35a-d7ce-4954-882d-c3eee0296797 + - bc3b4794-541a-4827-8e31-9228a17ea56f + - e34f57aa-1e86-4533-b0cd-6d591f054511 + - ca93c745-e42a-48c8-9db0-ea7f2e830594 + - 21f33ccb-2efc-4c07-a3a6-0539963c79f1 + - 89248183-3195-4cf7-a4f3-8a6f3a2c1e6a + - d82426c8-eb7a-4917-8500-bd44dc051352 + - 02b16753-b22d-406c-ba62-b4c5b5099c44 + - 6327f4e0-bcb0-433b-a3cd-1b763bb59b0d + - 26624689-724f-4319-bd11-85559fc17bcb + - 9254510a-1ff7-4a70-a8b7-542e4881870c + - 8157f8f4-a7c9-442e-b7c7-9ed8491c5a9f status: code: 200 message: OK @@ -419,7 +779,7 @@ interactions: content-type: - application/json date: - - Sat, 09 Nov 2019 01:25:01 GMT + - Fri, 15 Nov 2019 01:33:00 GMT expires: - '-1' pragma: @@ -435,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -449,7 +809,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.1; Windows 10) AZURECLI/2.0.76 x-ms-date: - - Sat, 09 Nov 2019 01:25:01 GMT + - Fri, 15 Nov 2019 01:33:00 GMT x-ms-version: - '2018-11-09' method: PUT @@ -461,11 +821,11 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:25:01 GMT + - Fri, 15 Nov 2019 01:33:00 GMT etag: - - '"0x8D764B3A4863F72"' + - '"0x8D7696BC0AF57E9"' last-modified: - - Sat, 09 Nov 2019 01:25:01 GMT + - Fri, 15 Nov 2019 01:33:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -506,7 +866,7 @@ interactions: content-type: - application/json date: - - Sat, 09 Nov 2019 01:25:01 GMT + - Fri, 15 Nov 2019 01:33:01 GMT expires: - '-1' pragma: @@ -548,7 +908,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-09T01:24: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":"2019-11-15T01:31:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -557,7 +917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:25:02 GMT + - Fri, 15 Nov 2019 01:33:01 GMT expires: - '-1' pragma: @@ -598,7 +958,7 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest-1","name":"ehNamespaceiothubfortest-1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-09T01:25:04.083Z","updatedAt":"2019-11-09T01:25:04.083Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-15T01:33:03.337Z","updatedAt":"2019-11-15T01:33:03.337Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -607,7 +967,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:25:05 GMT + - Fri, 15 Nov 2019 01:33:04 GMT expires: - '-1' pragma: @@ -626,7 +986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '9' status: code: 200 message: OK @@ -651,7 +1011,7 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest-1","name":"ehNamespaceiothubfortest-1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-09T01:25:04.083Z","updatedAt":"2019-11-09T01:25:04.083Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-15T01:33:03.337Z","updatedAt":"2019-11-15T01:33:03.337Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -660,16 +1020,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:25:35 GMT + - Fri, 15 Nov 2019 01:33:35 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: @@ -702,7 +1062,7 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest-1","name":"ehNamespaceiothubfortest-1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-09T01:25:04.083Z","updatedAt":"2019-11-09T01:25:53.077Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-15T01:33:03.337Z","updatedAt":"2019-11-15T01:33:48.707Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -711,16 +1071,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:05 GMT + - Fri, 15 Nov 2019 01:34:05 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: @@ -755,7 +1115,7 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest-1","name":"ehNamespaceiothubfortest-1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-09T01:25:04.083Z","updatedAt":"2019-11-09T01:25:53.077Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest-1","createdAt":"2019-11-15T01:33:03.337Z","updatedAt":"2019-11-15T01:33:48.707Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest-1.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -764,16 +1124,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:06 GMT + - Fri, 15 Nov 2019 01:34:05 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: @@ -812,16 +1172,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest-1/eventhubs/eventHubiothubfortest","name":"eventHubiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West - US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2019-11-09T01:26:09.237Z","updatedAt":"2019-11-09T01:26:10.26Z","partitionIds":["0","1","2","3"]}}' + US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2019-11-15T01:34:08.187Z","updatedAt":"2019-11-15T01:34:08.767Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '542' + - '543' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:10 GMT + - Fri, 15 Nov 2019 01:34:09 GMT expires: - '-1' pragma: @@ -880,7 +1240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:11 GMT + - Fri, 15 Nov 2019 01:34:09 GMT expires: - '-1' pragma: @@ -927,7 +1287,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest-1/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest/ListKeys?api-version=2017-04-01 response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=hUe6+PQ7JOslWQ6zBJUkbX4Lz7hZmzDv98DAZwaUUiM=;EntityPath=eventHubiothubfortest","primaryKey":"9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=","secondaryKey":"hUe6+PQ7JOslWQ6zBJUkbX4Lz7hZmzDv98DAZwaUUiM=","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=kVcVpMzC2OqXvLttm2so6f8YmW2dcjj1mh4EJYBNiIA=;EntityPath=eventHubiothubfortest","primaryKey":"9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=","secondaryKey":"kVcVpMzC2OqXvLttm2so6f8YmW2dcjj1mh4EJYBNiIA=","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache @@ -936,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:12 GMT + - Fri, 15 Nov 2019 01:34:10 GMT expires: - '-1' pragma: @@ -955,7 +1315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -996,7 +1356,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:14 GMT + - Fri, 15 Nov 2019 01:34:11 GMT expires: - '-1' pragma: @@ -1040,7 +1400,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-09T01:24: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":"2019-11-15T01:31:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1049,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:15 GMT + - Fri, 15 Nov 2019 01:34:12 GMT expires: - '-1' pragma: @@ -1101,7 +1461,7 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQwY2I4YjYtMzVmYS00ZGZhLTk4ZjUtN2IzZWFjMzNjNzRm?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzEyY2Q5NmMtYzkxYS00MWQ2LTg0YzUtYzVjNGE5ZmQ0NzJk?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1109,7 +1469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:26:29 GMT + - Fri, 15 Nov 2019 01:34:28 GMT expires: - '-1' pragma: @@ -1144,7 +1504,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQwY2I4YjYtMzVmYS00ZGZhLTk4ZjUtN2IzZWFjMzNjNzRm?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzEyY2Q5NmMtYzkxYS00MWQ2LTg0YzUtYzVjNGE5ZmQ0NzJk?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1156,7 +1516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:27:00 GMT + - Fri, 15 Nov 2019 01:34:58 GMT expires: - '-1' pragma: @@ -1193,7 +1553,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQwY2I4YjYtMzVmYS00ZGZhLTk4ZjUtN2IzZWFjMzNjNzRm?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzEyY2Q5NmMtYzkxYS00MWQ2LTg0YzUtYzVjNGE5ZmQ0NzJk?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1205,7 +1565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:27:30 GMT + - Fri, 15 Nov 2019 01:35:28 GMT expires: - '-1' pragma: @@ -1242,7 +1602,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQwY2I4YjYtMzVmYS00ZGZhLTk4ZjUtN2IzZWFjMzNjNzRm?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzEyY2Q5NmMtYzkxYS00MWQ2LTg0YzUtYzVjNGE5ZmQ0NzJk?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1254,7 +1614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:01 GMT + - Fri, 15 Nov 2019 01:35:59 GMT expires: - '-1' pragma: @@ -1294,8 +1654,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1304,7 +1664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:01 GMT + - Fri, 15 Nov 2019 01:35:59 GMT expires: - '-1' pragma: @@ -1379,7 +1739,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -1406,11 +1766,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -1437,21 +1796,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156939' + - '160061' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:15 GMT + - Fri, 15 Nov 2019 01:36:14 GMT expires: - '-1' pragma: @@ -1493,7 +1856,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -1503,7 +1866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:15 GMT + - Fri, 15 Nov 2019 01:36:13 GMT expires: - '-1' pragma: @@ -1519,7 +1882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1580,7 +1943,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -1607,11 +1970,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -1638,21 +2000,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156939' + - '160061' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:29 GMT + - Fri, 15 Nov 2019 01:36:27 GMT expires: - '-1' pragma: @@ -1694,7 +2060,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -1704,7 +2070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:29 GMT + - Fri, 15 Nov 2019 01:36:27 GMT expires: - '-1' pragma: @@ -1781,7 +2147,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -1808,11 +2174,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -1839,21 +2204,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156939' + - '160061' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:41 GMT + - Fri, 15 Nov 2019 01:36:41 GMT expires: - '-1' pragma: @@ -1895,8 +2264,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -1905,7 +2274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:42 GMT + - Fri, 15 Nov 2019 01:36:41 GMT expires: - '-1' pragma: @@ -1921,7 +2290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1982,7 +2351,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -2009,11 +2378,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -2040,21 +2408,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156939' + - '160061' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:28:55 GMT + - Fri, 15 Nov 2019 01:36:55 GMT expires: - '-1' pragma: @@ -2129,7 +2501,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -2156,11 +2528,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -2187,21 +2558,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156939' + - '160061' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:29:08 GMT + - Fri, 15 Nov 2019 01:37:08 GMT expires: - '-1' pragma: @@ -2276,7 +2651,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -2303,11 +2678,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -2334,21 +2708,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156939' + - '160061' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:29:22 GMT + - Fri, 15 Nov 2019 01:37:22 GMT expires: - '-1' pragma: @@ -2367,7 +2745,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAlVIQ0=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAl1tzc=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -2394,7 +2772,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVIQ0=''}' + - '{''IF-MATCH'': ''AAAAAAl1tzc=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: @@ -2406,15 +2784,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIQ0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:27:53 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:27:53 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:27:53 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:27:53 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:27:53 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:27:53 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:27:53 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:27:53 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1tzc=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:35:47 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:35:47 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:35:47 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:35:47 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:35:47 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:35:47 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:35:47 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:35:47 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGEwNjIzNjgtNGQzYy00NDIxLWEyODgtYTkwMTAyODE4YmNi?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmQ0NWJlMTMtMjc1Zi00MTA1LWJhZGEtZDg5YmViZTZkZGUz?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -2422,7 +2800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:29:24 GMT + - Fri, 15 Nov 2019 01:37:26 GMT expires: - '-1' pragma: @@ -2455,7 +2833,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGEwNjIzNjgtNGQzYy00NDIxLWEyODgtYTkwMTAyODE4YmNi?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmQ0NWJlMTMtMjc1Zi00MTA1LWJhZGEtZDg5YmViZTZkZGUz?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2467,7 +2845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:29:55 GMT + - Fri, 15 Nov 2019 01:37:57 GMT expires: - '-1' pragma: @@ -2505,8 +2883,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIvU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uJk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2515,7 +2893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:29:56 GMT + - Fri, 15 Nov 2019 01:37:57 GMT expires: - '-1' pragma: @@ -2590,7 +2968,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -2617,11 +2995,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -2648,21 +3025,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIvU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uJk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:09 GMT + - Fri, 15 Nov 2019 01:38:10 GMT expires: - '-1' pragma: @@ -2702,8 +3083,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIvU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uJk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache @@ -2712,7 +3093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:10 GMT + - Fri, 15 Nov 2019 01:38:11 GMT expires: - '-1' pragma: @@ -2787,7 +3168,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -2814,11 +3195,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -2845,21 +3225,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIvU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uJk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:23 GMT + - Fri, 15 Nov 2019 01:38:25 GMT expires: - '-1' pragma: @@ -2908,7 +3292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:24 GMT + - Fri, 15 Nov 2019 01:38:25 GMT expires: - '-1' pragma: @@ -2983,7 +3367,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -3010,11 +3394,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -3041,21 +3424,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIvU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uJk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:37 GMT + - Fri, 15 Nov 2019 01:38:38 GMT expires: - '-1' pragma: @@ -3097,8 +3484,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -3107,7 +3494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:37 GMT + - Fri, 15 Nov 2019 01:38:38 GMT expires: - '-1' pragma: @@ -3128,17 +3515,17 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAlVIvU=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=", - "secondaryKey": "AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=", - "secondaryKey": "RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=", - "secondaryKey": "5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=", - "secondaryKey": "Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=", - "secondaryKey": "+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=", "rights": "RegistryWrite"}, + body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAl1uJk=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=", + "secondaryKey": "fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=", + "secondaryKey": "FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=", + "secondaryKey": "Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=", + "secondaryKey": "tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=", + "secondaryKey": "G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=", "rights": "RegistryWrite"}, {"keyName": "test_policy", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], @@ -3166,7 +3553,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVIvU=''}' + - '{''IF-MATCH'': ''AAAAAAl1uJk=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: @@ -3178,16 +3565,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVIvU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"F5MQ0/BFK0gQZsPDG8YfC81U7ozYGfwGo1/aGEcz668=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","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-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:29:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:29:35 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:29:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:29:35 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:29:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:29:35 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:29:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:29:35 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uJk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"zTER/GnwVS012p7TH1PTnS31YkIdGr3/YxacdmNnD0c=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","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-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:37:35 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:37:35 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:37:35 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:37:35 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:37:35 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:37:35 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:37:35 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:37:35 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzIwOGU3NzItOGZiZi00MjM1LWIxNjktMjA1NGU0ZjhkNDI1?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU2YmYzOWItZjZjNS00NGNmLTg0NWUtNzk2OTEzZmY0Njk4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3195,7 +3582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:30:40 GMT + - Fri, 15 Nov 2019 01:38:40 GMT expires: - '-1' pragma: @@ -3228,7 +3615,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzIwOGU3NzItOGZiZi00MjM1LWIxNjktMjA1NGU0ZjhkNDI1?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU2YmYzOWItZjZjNS00NGNmLTg0NWUtNzk2OTEzZmY0Njk4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3240,7 +3627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:10 GMT + - Fri, 15 Nov 2019 01:39:12 GMT expires: - '-1' pragma: @@ -3278,8 +3665,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJME=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -3288,7 +3675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:10 GMT + - Fri, 15 Nov 2019 01:39:12 GMT expires: - '-1' pragma: @@ -3363,7 +3750,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -3390,11 +3777,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -3421,21 +3807,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJME=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:25 GMT + - Fri, 15 Nov 2019 01:39:26 GMT expires: - '-1' pragma: @@ -3477,8 +3867,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"F5MQ0/BFK0gQZsPDG8YfC81U7ozYGfwGo1/aGEcz668=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"zTER/GnwVS012p7TH1PTnS31YkIdGr3/YxacdmNnD0c=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -3488,7 +3878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:25 GMT + - Fri, 15 Nov 2019 01:39:28 GMT expires: - '-1' pragma: @@ -3565,7 +3955,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -3592,11 +3982,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -3623,21 +4012,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJME=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:39 GMT + - Fri, 15 Nov 2019 01:39:41 GMT expires: - '-1' pragma: @@ -3679,7 +4072,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/test_policy/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"test_policy","primaryKey":"F5MQ0/BFK0gQZsPDG8YfC81U7ozYGfwGo1/aGEcz668=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"zTER/GnwVS012p7TH1PTnS31YkIdGr3/YxacdmNnD0c=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -3689,7 +4082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:39 GMT + - Fri, 15 Nov 2019 01:39:41 GMT expires: - '-1' pragma: @@ -3705,7 +4098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3766,7 +4159,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -3793,11 +4186,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -3824,21 +4216,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJME=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:53 GMT + - Fri, 15 Nov 2019 01:39:54 GMT expires: - '-1' pragma: @@ -3880,8 +4276,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"F5MQ0/BFK0gQZsPDG8YfC81U7ozYGfwGo1/aGEcz668=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"zTER/GnwVS012p7TH1PTnS31YkIdGr3/YxacdmNnD0c=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -3891,7 +4287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:52 GMT + - Fri, 15 Nov 2019 01:39:56 GMT expires: - '-1' pragma: @@ -3912,19 +4308,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAlVJME=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=", - "secondaryKey": "AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=", - "secondaryKey": "RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=", - "secondaryKey": "5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=", - "secondaryKey": "Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=", - "secondaryKey": "+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=", "rights": "RegistryWrite"}, - {"keyName": "test_policy", "primaryKey": "GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=", - "secondaryKey": "5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=", "rights": "RegistryWrite, + body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAl1uUs=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=", + "secondaryKey": "fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=", + "secondaryKey": "FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=", + "secondaryKey": "Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=", + "secondaryKey": "tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=", + "secondaryKey": "G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=", "rights": "RegistryWrite"}, + {"keyName": "test_policy", "primaryKey": "eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=", + "secondaryKey": "7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": @@ -3951,7 +4347,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVJME=''}' + - '{''IF-MATCH'': ''AAAAAAl1uUs=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: @@ -3963,17 +4359,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJME=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","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-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:30:47 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:30:47 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:30:47 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:30:47 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:30:47 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:30:47 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:30:47 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:30:47 GMT"},{"KeyName":"test_policy","PrimaryKey":"F5MQ0/BFK0gQZsPDG8YfC81U7ozYGfwGo1/aGEcz668=","SecondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:30:47 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:30:47 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1uUs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","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-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:38:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:38:52 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:38:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:38:52 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:38:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:38:52 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:38:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:38:52 GMT"},{"KeyName":"test_policy","PrimaryKey":"zTER/GnwVS012p7TH1PTnS31YkIdGr3/YxacdmNnD0c=","SecondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:38:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:38:52 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWZjMWI1ODgtZDY4YS00Mzg5LWFjNTgtZjRkMTg0YzIwNmI0?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmYxMDBjZjgtMTA0Ni00MmZjLWI2MDQtNWNhODUxZjc0MTkw?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3981,7 +4377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:31:55 GMT + - Fri, 15 Nov 2019 01:39:57 GMT expires: - '-1' pragma: @@ -4014,7 +4410,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWZjMWI1ODgtZDY4YS00Mzg5LWFjNTgtZjRkMTg0YzIwNmI0?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmYxMDBjZjgtMTA0Ni00MmZjLWI2MDQtNWNhODUxZjc0MTkw?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4026,7 +4422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:32:25 GMT + - Fri, 15 Nov 2019 01:40:28 GMT expires: - '-1' pragma: @@ -4064,8 +4460,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJbQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1ujY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4074,7 +4470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:32:26 GMT + - Fri, 15 Nov 2019 01:40:29 GMT expires: - '-1' pragma: @@ -4149,7 +4545,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -4176,11 +4572,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -4207,21 +4602,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJbQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1ujY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:32:39 GMT + - Fri, 15 Nov 2019 01:40:43 GMT expires: - '-1' pragma: @@ -4263,7 +4662,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/test_policy/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"test_policy","primaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -4273,7 +4672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:32:40 GMT + - Fri, 15 Nov 2019 01:40:43 GMT expires: - '-1' pragma: @@ -4350,7 +4749,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -4377,11 +4776,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -4408,21 +4806,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJbQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1ujY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:32:53 GMT + - Fri, 15 Nov 2019 01:40:56 GMT expires: - '-1' pragma: @@ -4464,7 +4866,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/test_policy/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"test_policy","primaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -4474,7 +4876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:32:53 GMT + - Fri, 15 Nov 2019 01:40:57 GMT expires: - '-1' pragma: @@ -4490,7 +4892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -4551,7 +4953,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -4578,11 +4980,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -4609,21 +5010,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJbQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1ujY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:33:06 GMT + - Fri, 15 Nov 2019 01:41:10 GMT expires: - '-1' pragma: @@ -4698,7 +5103,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -4725,11 +5130,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -4756,21 +5160,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJbQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1ujY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:33:20 GMT + - Fri, 15 Nov 2019 01:41:24 GMT expires: - '-1' pragma: @@ -4812,8 +5220,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","secondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","secondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -4823,7 +5231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:33:20 GMT + - Fri, 15 Nov 2019 01:41:25 GMT expires: - '-1' pragma: @@ -4839,24 +5247,24 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAlVJbQ=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=", - "secondaryKey": "AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=", - "secondaryKey": "RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=", - "secondaryKey": "5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=", - "secondaryKey": "Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=", - "secondaryKey": "+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=", "rights": "RegistryWrite"}, - {"keyName": "test_policy", "primaryKey": "5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=", - "secondaryKey": "GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=", "rights": "RegistryWrite, + body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAl1ujY=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=", + "secondaryKey": "fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=", + "secondaryKey": "FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=", + "secondaryKey": "Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=", + "secondaryKey": "tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=", + "secondaryKey": "G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=", "rights": "RegistryWrite"}, + {"keyName": "test_policy", "primaryKey": "7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=", + "secondaryKey": "eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": @@ -4883,7 +5291,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVJbQ=''}' + - '{''IF-MATCH'': ''AAAAAAl1ujY=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: @@ -4895,17 +5303,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJbQ=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","secondaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","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-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:32:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:32:04 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:32:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:32:04 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:32:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:32:04 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:32:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:32:04 GMT"},{"KeyName":"test_policy","PrimaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","SecondaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:32:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:32:04 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1ujY=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","secondaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","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-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:40:08 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:40:08 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:40:08 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:40:08 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:40:08 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:40:08 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:40:08 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:40:08 GMT"},{"KeyName":"test_policy","PrimaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","SecondaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:40:08 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:40:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzVmMjNlZjgtYjMzNi00YTNjLWIyZWUtMmU5YWI0ZmQyY2Fi?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODFmOTdlNTUtZTk2NS00ZWJiLWIwNDEtZjU3YzAzZTUyYTcw?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -4913,7 +5321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:33:22 GMT + - Fri, 15 Nov 2019 01:41:27 GMT expires: - '-1' pragma: @@ -4946,7 +5354,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzVmMjNlZjgtYjMzNi00YTNjLWIyZWUtMmU5YWI0ZmQyY2Fi?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODFmOTdlNTUtZTk2NS00ZWJiLWIwNDEtZjU3YzAzZTUyYTcw?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4958,7 +5366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:33:53 GMT + - Fri, 15 Nov 2019 01:41:57 GMT expires: - '-1' pragma: @@ -4996,8 +5404,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJvY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1u+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-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5006,7 +5414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:33:54 GMT + - Fri, 15 Nov 2019 01:41:58 GMT expires: - '-1' pragma: @@ -5081,7 +5489,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -5108,11 +5516,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -5139,21 +5546,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJvY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1u+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-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:07 GMT + - Fri, 15 Nov 2019 01:42:13 GMT expires: - '-1' pragma: @@ -5195,7 +5606,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/test_policy/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"test_policy","primaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","secondaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","secondaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -5205,7 +5616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:08 GMT + - Fri, 15 Nov 2019 01:42:13 GMT expires: - '-1' pragma: @@ -5282,7 +5693,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -5309,11 +5720,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -5340,21 +5750,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJvY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1u+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-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:21 GMT + - Fri, 15 Nov 2019 01:42:26 GMT expires: - '-1' pragma: @@ -5396,8 +5810,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","secondaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","secondaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -5407,7 +5821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:21 GMT + - Fri, 15 Nov 2019 01:42:26 GMT expires: - '-1' pragma: @@ -5451,8 +5865,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","secondaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","secondaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -5462,7 +5876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:22 GMT + - Fri, 15 Nov 2019 01:42:27 GMT expires: - '-1' pragma: @@ -5478,22 +5892,22 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAlVJvY=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=", - "secondaryKey": "AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=", - "secondaryKey": "RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=", - "secondaryKey": "5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=", - "secondaryKey": "Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=", - "secondaryKey": "+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=", "rights": "RegistryWrite"}], + body: '{"location": "westus2", "tags": {}, "etag": "AAAAAAl1u+8=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=", + "secondaryKey": "fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=", + "secondaryKey": "FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=", + "secondaryKey": "Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=", + "secondaryKey": "tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=", + "secondaryKey": "G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=", "rights": "RegistryWrite"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -5520,7 +5934,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVJvY=''}' + - '{''IF-MATCH'': ''AAAAAAl1u+8=''}' ParameterSetName: - --hub-name -n User-Agent: @@ -5532,16 +5946,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVJvY=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:33:32 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:33:32 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:33:32 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:33:32 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:33:32 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:33:32 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:33:32 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:33:32 GMT"},{"KeyName":"test_policy","PrimaryKey":"5ozgCNrb/jmnSY+HKcbS/pkEyj4hGLHZAb5+Ml0ntQ0=","SecondaryKey":"GndzfX4vdhNEShN0GWFzK2UmQTcxJS9VPFBeKX1QMBM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:33:32 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:33:32 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1u+8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:41:40 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:41:40 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:41:40 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:41:40 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:41:40 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:41:40 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:41:40 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:41:40 GMT"},{"KeyName":"test_policy","PrimaryKey":"7cmhpykTV92AYxuGylgDOcOAh90wVIwczbj7hW9D59E=","SecondaryKey":"eVI4eEkTd0UmOUkdOWx4WnQgV35DLUhMUFZ9YnwfPTQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:41:40 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:41:40 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZmYzYxYmYtYTJhYS00ZjQ4LTk2YTEtMzA1MWIyNTJkMDA3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY2MDE0MDctZWJlOS00YjgxLTgyZTUtNWIxOTRiZDNiNmZm?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -5549,7 +5963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:24 GMT + - Fri, 15 Nov 2019 01:42:30 GMT expires: - '-1' pragma: @@ -5582,7 +5996,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZmYzYxYmYtYTJhYS00ZjQ4LTk2YTEtMzA1MWIyNTJkMDA3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY2MDE0MDctZWJlOS00YjgxLTgyZTUtNWIxOTRiZDNiNmZm?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5594,7 +6008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:55 GMT + - Fri, 15 Nov 2019 01:43:00 GMT expires: - '-1' pragma: @@ -5632,8 +6046,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5642,7 +6056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:34:56 GMT + - Fri, 15 Nov 2019 01:43:01 GMT expires: - '-1' pragma: @@ -5717,7 +6131,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -5744,11 +6158,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -5775,21 +6188,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:10 GMT + - Fri, 15 Nov 2019 01:43:15 GMT expires: - '-1' pragma: @@ -5831,8 +6248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/listkeys?api-version=2019-03-22-preview response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -5841,7 +6258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:10 GMT + - Fri, 15 Nov 2019 01:43:16 GMT expires: - '-1' pragma: @@ -5857,7 +6274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -5918,7 +6335,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -5945,11 +6362,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -5976,21 +6392,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:24 GMT + - Fri, 15 Nov 2019 01:43:29 GMT expires: - '-1' pragma: @@ -6032,7 +6452,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22-preview response: body: - string: '{"properties":{"created":"Sat, 09 Nov 2019 01:35:27 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Fri, 15 Nov 2019 01:43:31 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -6041,7 +6461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:27 GMT + - Fri, 15 Nov 2019 01:43:32 GMT expires: - '-1' pragma: @@ -6118,7 +6538,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -6145,11 +6565,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -6176,21 +6595,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:40 GMT + - Fri, 15 Nov 2019 01:43:45 GMT expires: - '-1' pragma: @@ -6230,7 +6653,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22-preview response: body: - string: '{"properties":{"created":"Sat, 09 Nov 2019 01:35:27 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Fri, 15 Nov 2019 01:43:31 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -6239,7 +6662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:41 GMT + - Fri, 15 Nov 2019 01:43:46 GMT expires: - '-1' pragma: @@ -6314,7 +6737,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -6341,11 +6764,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -6372,21 +6794,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:54 GMT + - Fri, 15 Nov 2019 01:43:59 GMT expires: - '-1' pragma: @@ -6426,8 +6852,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups?api-version=2019-03-22-preview response: body: - string: '{"value":[{"properties":{"created":"Sat, 09 Nov 2019 01:27:47 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Sat, - 09 Nov 2019 01:35:27 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Fri, 15 Nov 2019 01:35:41 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Fri, + 15 Nov 2019 01:43:31 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -6436,7 +6862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:35:55 GMT + - Fri, 15 Nov 2019 01:43:59 GMT expires: - '-1' pragma: @@ -6511,7 +6937,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -6538,11 +6964,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -6569,21 +6994,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:08 GMT + - Fri, 15 Nov 2019 01:44:13 GMT expires: - '-1' pragma: @@ -6632,7 +7061,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:36:08 GMT + - Fri, 15 Nov 2019 01:44:20 GMT expires: - '-1' pragma: @@ -6705,7 +7134,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -6732,11 +7161,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -6763,21 +7191,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:21 GMT + - Fri, 15 Nov 2019 01:44:34 GMT expires: - '-1' pragma: @@ -6817,7 +7249,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups?api-version=2019-03-22-preview response: body: - string: '{"value":[{"properties":{"created":"Sat, 09 Nov 2019 01:27:47 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Fri, 15 Nov 2019 01:35:41 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -6826,7 +7258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:22 GMT + - Fri, 15 Nov 2019 01:44:34 GMT expires: - '-1' pragma: @@ -6901,7 +7333,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -6928,11 +7360,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -6959,21 +7390,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:36 GMT + - Fri, 15 Nov 2019 01:44:48 GMT expires: - '-1' pragma: @@ -7022,7 +7457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:36 GMT + - Fri, 15 Nov 2019 01:44:48 GMT expires: - '-1' pragma: @@ -7097,7 +7532,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -7124,11 +7559,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -7155,21 +7589,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:50 GMT + - Fri, 15 Nov 2019 01:45:02 GMT expires: - '-1' pragma: @@ -7211,8 +7649,8 @@ interactions: body: string: '{"code":404011,"httpStatusCode":"NotFound","message":"Job not found with ID ''fake-job''. If you contact a support representative please include - this correlation identifier: b67db150-5e76-47b4-87df-17968892f6bb, timestamp: - 2019-11-09 01:36:51Z, errorcode: IH404011."}' + this correlation identifier: db6487fd-c93e-484a-b3dd-af9b6ec0b741, timestamp: + 2019-11-15 01:45:03Z, errorcode: IH404011."}' headers: cache-control: - no-cache @@ -7221,7 +7659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:36:51 GMT + - Fri, 15 Nov 2019 01:45:02 GMT expires: - '-1' pragma: @@ -7292,7 +7730,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -7319,11 +7757,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -7350,21 +7787,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:04 GMT + - Fri, 15 Nov 2019 01:45:15 GMT expires: - '-1' pragma: @@ -7439,7 +7880,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -7466,11 +7907,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -7497,21 +7937,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:17 GMT + - Fri, 15 Nov 2019 01:45:29 GMT expires: - '-1' pragma: @@ -7553,7 +7997,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22-preview response: body: - string: '{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -7563,7 +8007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:17 GMT + - Fri, 15 Nov 2019 01:45:29 GMT expires: - '-1' pragma: @@ -7579,7 +8023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -7606,14 +8050,14 @@ interactions: response: body: string: '{"Message":"ErrorCode:JobNotFound;NotFound","ExceptionMessage":"Tracking - ID:acd30405a69e45569a6814a2f03e92b6-G:8-TimeStamp:11/09/2019 01:37:18"}' + ID:ed1c668f33af4e0e9779f4c8eb7e416f-G:3-TimeStamp:11/15/2019 01:45:30"}' headers: content-length: - '144' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:18 GMT + - Fri, 15 Nov 2019 01:45:30 GMT iothub-errorcode: - JobNotFound server: @@ -7678,7 +8122,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -7705,11 +8149,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -7736,21 +8179,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:31 GMT + - Fri, 15 Nov 2019 01:45:43 GMT expires: - '-1' pragma: @@ -7799,7 +8246,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:32 GMT + - Fri, 15 Nov 2019 01:45:43 GMT expires: - '-1' pragma: @@ -7874,7 +8321,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -7901,11 +8348,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -7932,21 +8378,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '156942' + - '160064' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:46 GMT + - Fri, 15 Nov 2019 01:45:58 GMT expires: - '-1' pragma: @@ -7995,7 +8445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:46 GMT + - Fri, 15 Nov 2019 01:45:58 GMT expires: - '-1' pragma: @@ -8042,7 +8492,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:37:46 GMT + - Fri, 15 Nov 2019 01:45:58 GMT expires: - '-1' pragma: @@ -8090,7 +8540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:47 GMT + - Fri, 15 Nov 2019 01:45:59 GMT expires: - '-1' pragma: @@ -8106,7 +8556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -8132,8 +8582,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -8142,7 +8592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:48 GMT + - Fri, 15 Nov 2019 01:45:59 GMT expires: - '-1' pragma: @@ -8161,10 +8611,10 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVKAs=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1vQ0=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest", "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": @@ -8190,7 +8640,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVKAs=''}' + - '{''IF-MATCH'': ''AAAAAAl1vQ0=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: @@ -8202,15 +8652,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKAs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:34:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:34:35 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:34:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:34:35 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:34:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:34:35 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:34:35 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:34:35 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1vQ0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:42:41 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:42:41 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:42:41 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:42:41 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:42:41 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:42:41 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:42:41 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:42:41 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNlYTcwYWEtZjZkZS00N2ZkLWI5MjQtNDI0OTU5NjQ0OWZl?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDU4YjYyYmMtYTE1Ny00OTE1LWI2ZmUtYzU4NDVhYjk0ZTU1?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8218,7 +8668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:37:50 GMT + - Fri, 15 Nov 2019 01:46:01 GMT expires: - '-1' pragma: @@ -8251,7 +8701,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNlYTcwYWEtZjZkZS00N2ZkLWI5MjQtNDI0OTU5NjQ0OWZl?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDU4YjYyYmMtYTE1Ny00OTE1LWI2ZmUtYzU4NDVhYjk0ZTU1?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8263,7 +8713,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:20 GMT + - Fri, 15 Nov 2019 01:46:32 GMT expires: - '-1' pragma: @@ -8301,8 +8751,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKfw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wt0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -8311,7 +8761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:21 GMT + - Fri, 15 Nov 2019 01:46:33 GMT expires: - '-1' pragma: @@ -8358,7 +8808,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:38:23 GMT + - Fri, 15 Nov 2019 01:46:34 GMT expires: - '-1' pragma: @@ -8406,7 +8856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:23 GMT + - Fri, 15 Nov 2019 01:46:34 GMT expires: - '-1' pragma: @@ -8422,7 +8872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -8448,8 +8898,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKfw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wt0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -8458,7 +8908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:23 GMT + - Fri, 15 Nov 2019 01:46:35 GMT expires: - '-1' pragma: @@ -8505,7 +8955,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:38:24 GMT + - Fri, 15 Nov 2019 01:46:35 GMT expires: - '-1' pragma: @@ -8553,7 +9003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:24 GMT + - Fri, 15 Nov 2019 01:46:36 GMT expires: - '-1' pragma: @@ -8595,8 +9045,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKfw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wt0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -8605,7 +9055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:25 GMT + - Fri, 15 Nov 2019 01:46:37 GMT expires: - '-1' pragma: @@ -8652,7 +9102,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:38:26 GMT + - Fri, 15 Nov 2019 01:46:36 GMT expires: - '-1' pragma: @@ -8700,7 +9150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:25 GMT + - Fri, 15 Nov 2019 01:46:38 GMT expires: - '-1' pragma: @@ -8742,8 +9192,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKfw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wt0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -8752,7 +9202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:27 GMT + - Fri, 15 Nov 2019 01:46:39 GMT expires: - '-1' pragma: @@ -8782,7 +9232,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --hub-name -g -n -t -r -s -c --container-name --encoding + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 @@ -8799,7 +9249,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:38:26 GMT + - Fri, 15 Nov 2019 01:46:38 GMT expires: - '-1' pragma: @@ -8827,7 +9277,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --hub-name -g -n -t -r -s -c --container-name --encoding + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 @@ -8847,7 +9297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:27 GMT + - Fri, 15 Nov 2019 01:46:39 GMT expires: - '-1' pragma: @@ -8863,7 +9313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -8879,7 +9329,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --hub-name -g -n -t -r -s -c --container-name --encoding + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 @@ -8889,8 +9339,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKfw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wt0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -8899,7 +9349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:27 GMT + - Fri, 15 Nov 2019 01:46:40 GMT expires: - '-1' pragma: @@ -8918,7 +9368,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVKfw=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1wt0=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", @@ -8926,9 +9376,11 @@ interactions: "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==", "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "encoding": - "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", - "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "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": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****", "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -8946,13 +9398,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1898' + - '2033' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVKfw=''}' + - '{''IF-MATCH'': ''AAAAAAl1wt0=''}' ParameterSetName: - - --hub-name -g -n -t -r -s -c --container-name --encoding + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 @@ -8962,15 +9414,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKfw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:37:58 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:37:58 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:37:58 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:37:58 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:37:58 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:37:58 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:37:58 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:37:58 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wt0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:10 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:10 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:10 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:10 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:10 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:10 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:10 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:10 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmE0M2RhYTEtMGRhNS00YTc2LTk4ZGUtM2ZkNGI1YjJhNTQy?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWZhOTdkNzEtOTRlYi00ZjFhLWFmZTAtYjJkMWZmZGE5ZTQ2?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8978,7 +9430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:38:30 GMT + - Fri, 15 Nov 2019 01:46:43 GMT expires: - '-1' pragma: @@ -8990,7 +9442,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -9006,12 +9458,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --hub-name -g -n -t -r -s -c --container-name --encoding + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmE0M2RhYTEtMGRhNS00YTc2LTk4ZGUtM2ZkNGI1YjJhNTQy?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWZhOTdkNzEtOTRlYi00ZjFhLWFmZTAtYjJkMWZmZGE5ZTQ2?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9023,7 +9475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:39:02 GMT + - Fri, 15 Nov 2019 01:47:13 GMT expires: - '-1' pragma: @@ -9053,7 +9505,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --hub-name -g -n -t -r -s -c --container-name --encoding + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 @@ -9061,8 +9513,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKjk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wyw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9071,7 +9523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:39:02 GMT + - Fri, 15 Nov 2019 01:47:13 GMT expires: - '-1' pragma: @@ -9118,7 +9570,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:39:03 GMT + - Fri, 15 Nov 2019 01:47:14 GMT expires: - '-1' pragma: @@ -9166,7 +9618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:39:04 GMT + - Fri, 15 Nov 2019 01:47:15 GMT expires: - '-1' pragma: @@ -9208,8 +9660,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKjk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wyw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9218,7 +9670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:39:04 GMT + - Fri, 15 Nov 2019 01:47:15 GMT expires: - '-1' pragma: @@ -9237,7 +9689,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVKjk=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1wyw=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", @@ -9247,7 +9699,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [{"name": + 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": @@ -9273,7 +9725,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVKjk=''}' + - '{''IF-MATCH'': ''AAAAAAl1wyw=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: @@ -9285,15 +9737,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVKjk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:38:37 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:38:37 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:38:37 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:38:37 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:38:37 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:38:37 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:38:37 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:38:37 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1wyw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:51 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:51 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:51 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:51 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:51 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:51 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:46:51 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:46:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzQ1NGE0Y2QtZGM0NS00ODI1LTkwMDUtYjg1ZDUzYTZlOWI0?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODQ5NzU0ZWItZGE1NC00MmE2LWIxYWEtNGQxNzg0MTAzN2Ix?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -9301,7 +9753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:39:07 GMT + - Fri, 15 Nov 2019 01:47:18 GMT expires: - '-1' pragma: @@ -9334,7 +9786,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzQ1NGE0Y2QtZGM0NS00ODI1LTkwMDUtYjg1ZDUzYTZlOWI0?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODQ5NzU0ZWItZGE1NC00MmE2LWIxYWEtNGQxNzg0MTAzN2Ix?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -9346,7 +9798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:39:37 GMT + - Fri, 15 Nov 2019 01:47:48 GMT expires: - '-1' pragma: @@ -9381,7 +9833,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzQ1NGE0Y2QtZGM0NS00ODI1LTkwMDUtYjg1ZDUzYTZlOWI0?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODQ5NzU0ZWItZGE1NC00MmE2LWIxYWEtNGQxNzg0MTAzN2Ix?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9393,7 +9845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:08 GMT + - Fri, 15 Nov 2019 01:48:19 GMT expires: - '-1' pragma: @@ -9431,8 +9883,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9441,7 +9893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:09 GMT + - Fri, 15 Nov 2019 01:48:20 GMT expires: - '-1' pragma: @@ -9488,7 +9940,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:40:10 GMT + - Fri, 15 Nov 2019 01:48:20 GMT expires: - '-1' pragma: @@ -9536,7 +9988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:10 GMT + - Fri, 15 Nov 2019 01:48:20 GMT expires: - '-1' pragma: @@ -9552,7 +10004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -9578,8 +10030,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9588,7 +10040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:11 GMT + - Fri, 15 Nov 2019 01:48:21 GMT expires: - '-1' pragma: @@ -9635,7 +10087,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:40:11 GMT + - Fri, 15 Nov 2019 01:48:22 GMT expires: - '-1' pragma: @@ -9683,7 +10135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:12 GMT + - Fri, 15 Nov 2019 01:48:22 GMT expires: - '-1' pragma: @@ -9725,8 +10177,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9735,7 +10187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:13 GMT + - Fri, 15 Nov 2019 01:48:23 GMT expires: - '-1' pragma: @@ -9782,7 +10234,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:40:13 GMT + - Fri, 15 Nov 2019 01:48:23 GMT expires: - '-1' pragma: @@ -9830,7 +10282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:14 GMT + - Fri, 15 Nov 2019 01:48:24 GMT expires: - '-1' pragma: @@ -9872,8 +10324,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9882,7 +10334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:14 GMT + - Fri, 15 Nov 2019 01:48:24 GMT expires: - '-1' pragma: @@ -9929,7 +10381,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:40:14 GMT + - Fri, 15 Nov 2019 01:48:25 GMT expires: - '-1' pragma: @@ -9977,7 +10429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:15 GMT + - Fri, 15 Nov 2019 01:48:25 GMT expires: - '-1' pragma: @@ -10019,8 +10471,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -10029,7 +10481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:15 GMT + - Fri, 15 Nov 2019 01:48:25 GMT expires: - '-1' pragma: @@ -10083,7 +10535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:16 GMT + - Fri, 15 Nov 2019 01:48:26 GMT expires: - '-1' pragma: @@ -10099,7 +10551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -10138,7 +10590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:17 GMT + - Fri, 15 Nov 2019 01:48:27 GMT expires: - '-1' pragma: @@ -10154,7 +10606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -10187,7 +10639,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:40:17 GMT + - Fri, 15 Nov 2019 01:48:28 GMT expires: - '-1' pragma: @@ -10235,7 +10687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:17 GMT + - Fri, 15 Nov 2019 01:48:28 GMT expires: - '-1' pragma: @@ -10277,8 +10729,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -10287,7 +10739,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:17 GMT + - Fri, 15 Nov 2019 01:48:28 GMT expires: - '-1' pragma: @@ -10306,7 +10758,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVK10=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1w+0=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", @@ -10316,7 +10768,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [{"name": + 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": @@ -10342,7 +10794,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVK10=''}' + - '{''IF-MATCH'': ''AAAAAAl1w+0=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -10354,15 +10806,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK10=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:39:55 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:39:55 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:39:55 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:39:55 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:39:55 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:39:55 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:39:55 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:39:55 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1w+0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:15 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:15 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:15 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:15 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:15 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:15 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:15 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:15 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzQ4YzIyZTktM2Q1ZC00NzIwLWFiMGYtZmM2YmNhNTQ5MWEz?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjQwYWI1OGUtYTc2ZC00MDA3LWI3NjEtMGZlNWU3NmRjZDQ4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10370,7 +10822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:21 GMT + - Fri, 15 Nov 2019 01:48:31 GMT expires: - '-1' pragma: @@ -10403,7 +10855,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzQ4YzIyZTktM2Q1ZC00NzIwLWFiMGYtZmM2YmNhNTQ5MWEz?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjQwYWI1OGUtYTc2ZC00MDA3LWI3NjEtMGZlNWU3NmRjZDQ4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10415,7 +10867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:52 GMT + - Fri, 15 Nov 2019 01:49:03 GMT expires: - '-1' pragma: @@ -10453,8 +10905,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK/k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xEg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -10463,7 +10915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:52 GMT + - Fri, 15 Nov 2019 01:49:03 GMT expires: - '-1' pragma: @@ -10510,7 +10962,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:40:54 GMT + - Fri, 15 Nov 2019 01:49:04 GMT expires: - '-1' pragma: @@ -10558,7 +11010,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:54 GMT + - Fri, 15 Nov 2019 01:49:05 GMT expires: - '-1' pragma: @@ -10600,8 +11052,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK/k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xEg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -10610,7 +11062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:54 GMT + - Fri, 15 Nov 2019 01:49:06 GMT expires: - '-1' pragma: @@ -10629,7 +11081,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVK/k=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xEg=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", @@ -10639,7 +11091,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****", @@ -10663,7 +11115,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVK/k=''}' + - '{''IF-MATCH'': ''AAAAAAl1xEg=''}' ParameterSetName: - --hub-name -g User-Agent: @@ -10675,15 +11127,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVK/k=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:40:30 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:40:30 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:40:30 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:40:30 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:40:30 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:40:30 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:40:30 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:40:30 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9LNm3I8CmIvPFfv7HIeapcT9HPDTXXSU/TGU/jp1SoM=;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xEg=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:42 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:42 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:42 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:42 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:42 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:42 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:48:42 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:48:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=9+tYj+YtBKYgu7Wcq29RAM/P2mzhQQ/pDJ09oEddbN0=;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDY4YTA1MDgtNTY4OS00NTM5LWE3ZjUtYzM1NjE3MWU0YzY4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2MDRhMTEtZWEwNi00YWUxLWIxNTAtMjlkYTEzYzRkNDhi?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10691,7 +11143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:40:57 GMT + - Fri, 15 Nov 2019 01:49:09 GMT expires: - '-1' pragma: @@ -10724,7 +11176,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDY4YTA1MDgtNTY4OS00NTM5LWE3ZjUtYzM1NjE3MWU0YzY4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2MDRhMTEtZWEwNi00YWUxLWIxNTAtMjlkYTEzYzRkNDhi?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10736,7 +11188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:41:28 GMT + - Fri, 15 Nov 2019 01:49:39 GMT expires: - '-1' pragma: @@ -10774,8 +11226,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLIw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xLo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -10784,7 +11236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:41:28 GMT + - Fri, 15 Nov 2019 01:49:40 GMT expires: - '-1' pragma: @@ -10831,7 +11283,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:41:30 GMT + - Fri, 15 Nov 2019 01:49:42 GMT expires: - '-1' pragma: @@ -10879,7 +11331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:41:30 GMT + - Fri, 15 Nov 2019 01:49:42 GMT expires: - '-1' pragma: @@ -10895,7 +11347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -10921,8 +11373,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLIw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"3abd9ed4-ade1-4732-bc8c-534d0b3f6a78","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xLo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest-1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"62a9669f-42e6-43f4-a724-2357b9d44808","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -10931,7 +11383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:41:31 GMT + - Fri, 15 Nov 2019 01:49:42 GMT expires: - '-1' pragma: @@ -10950,7 +11402,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVLIw=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xLo=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": @@ -10958,7 +11410,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****", @@ -10982,7 +11434,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVLIw=''}' + - '{''IF-MATCH'': ''AAAAAAl1xLo=''}' ParameterSetName: - --hub-name -g -n User-Agent: @@ -10994,15 +11446,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLIw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:04 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:04 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:04 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:04 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:04 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xLo=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:16 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:16 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:16 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:16 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:16 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:16 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:16 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:16 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdmNmI1ZGItMjc4Zi00YTk1LWI3MzgtZGQ4MTAyMmJlZmEy?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I5ZDgzYzEtNGNmMC00NzIxLWIzMDAtMTk3OTY5NDg0NDE5?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -11010,7 +11462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:41:34 GMT + - Fri, 15 Nov 2019 01:49:46 GMT expires: - '-1' pragma: @@ -11022,7 +11474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -11043,7 +11495,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdmNmI1ZGItMjc4Zi00YTk1LWI3MzgtZGQ4MTAyMmJlZmEy?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I5ZDgzYzEtNGNmMC00NzIxLWIzMDAtMTk3OTY5NDg0NDE5?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11055,7 +11507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:04 GMT + - Fri, 15 Nov 2019 01:50:16 GMT expires: - '-1' pragma: @@ -11093,8 +11545,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLOg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xU4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -11103,7 +11555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:05 GMT + - Fri, 15 Nov 2019 01:50:17 GMT expires: - '-1' pragma: @@ -11150,7 +11602,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:42:06 GMT + - Fri, 15 Nov 2019 01:50:18 GMT expires: - '-1' pragma: @@ -11198,7 +11650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:07 GMT + - Fri, 15 Nov 2019 01:50:19 GMT expires: - '-1' pragma: @@ -11214,7 +11666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -11240,8 +11692,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLOg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xU4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -11250,7 +11702,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:07 GMT + - Fri, 15 Nov 2019 01:50:19 GMT expires: - '-1' pragma: @@ -11297,7 +11749,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:42:08 GMT + - Fri, 15 Nov 2019 01:50:19 GMT expires: - '-1' pragma: @@ -11345,7 +11797,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:09 GMT + - Fri, 15 Nov 2019 01:50:20 GMT expires: - '-1' pragma: @@ -11361,7 +11813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -11387,8 +11839,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLOg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xU4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -11397,7 +11849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:09 GMT + - Fri, 15 Nov 2019 01:50:21 GMT expires: - '-1' pragma: @@ -11416,7 +11868,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVLOg=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xU4=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": @@ -11424,7 +11876,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 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": @@ -11449,7 +11901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVLOg=''}' + - '{''IF-MATCH'': ''AAAAAAl1xU4=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -11464,7 +11916,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: - e51a3c68-6c0d-4fb4-8e1b-b6f21bdefefa, timestamp: 2019-11-09 01:42:12Z, errorcode: + b92ac0c7-3ee8-4d18-9cc9-1b32b00582a7, timestamp: 2019-11-15 01:50:23Z, errorcode: IH400131."}' headers: cache-control: @@ -11474,7 +11926,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:11 GMT + - Fri, 15 Nov 2019 01:50:23 GMT expires: - '-1' pragma: @@ -11519,7 +11971,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:42:12 GMT + - Fri, 15 Nov 2019 01:50:24 GMT expires: - '-1' pragma: @@ -11567,7 +12019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:12 GMT + - Fri, 15 Nov 2019 01:50:24 GMT expires: - '-1' pragma: @@ -11583,7 +12035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -11609,8 +12061,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLOg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xU4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -11619,7 +12071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:12 GMT + - Fri, 15 Nov 2019 01:50:24 GMT expires: - '-1' pragma: @@ -11638,7 +12090,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVLOg=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xU4=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": @@ -11646,7 +12098,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 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": @@ -11671,7 +12123,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVLOg=''}' + - '{''IF-MATCH'': ''AAAAAAl1xU4=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -11683,15 +12135,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLOg=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:41 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:41 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:41 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:41 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:41 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:41 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:41:41 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:41:41 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xU4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:52 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:52 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:52 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:49:52 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:49:52 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2IwMWVjNmMtYTIzOS00ZjYwLTliYWEtNDFhMjBhYmQzMjZl?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWZmNjk5MjEtNDdmNS00N2MxLTg5YzMtN2U3YmRhNzVlY2Ew?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -11699,7 +12151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:16 GMT + - Fri, 15 Nov 2019 01:50:28 GMT expires: - '-1' pragma: @@ -11732,7 +12184,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2IwMWVjNmMtYTIzOS00ZjYwLTliYWEtNDFhMjBhYmQzMjZl?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWZmNjk5MjEtNDdmNS00N2MxLTg5YzMtN2U3YmRhNzVlY2Ew?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11744,7 +12196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:46 GMT + - Fri, 15 Nov 2019 01:51:00 GMT expires: - '-1' pragma: @@ -11782,8 +12234,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLWc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xgc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -11792,7 +12244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:47 GMT + - Fri, 15 Nov 2019 01:51:00 GMT expires: - '-1' pragma: @@ -11839,7 +12291,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:42:47 GMT + - Fri, 15 Nov 2019 01:51:01 GMT expires: - '-1' pragma: @@ -11887,7 +12339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:48 GMT + - Fri, 15 Nov 2019 01:51:02 GMT expires: - '-1' pragma: @@ -11929,8 +12381,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLWc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xgc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -11939,7 +12391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:50 GMT + - Fri, 15 Nov 2019 01:51:02 GMT expires: - '-1' pragma: @@ -11986,7 +12438,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:42:49 GMT + - Fri, 15 Nov 2019 01:51:03 GMT expires: - '-1' pragma: @@ -12034,7 +12486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:50 GMT + - Fri, 15 Nov 2019 01:51:03 GMT expires: - '-1' pragma: @@ -12050,7 +12502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -12076,8 +12528,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLWc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xgc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -12086,7 +12538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:51 GMT + - Fri, 15 Nov 2019 01:51:04 GMT expires: - '-1' pragma: @@ -12105,7 +12557,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVLWc=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xgc=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": @@ -12113,7 +12565,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 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": @@ -12138,7 +12590,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVLWc=''}' + - '{''IF-MATCH'': ''AAAAAAl1xgc=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -12153,7 +12605,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: - 54ce7264-2b8d-4699-8fb1-22cf2b7fc03c, timestamp: 2019-11-09 01:42:53Z, errorcode: + 92d37d26-c75f-4cb6-b6d4-5ea2d639d818, timestamp: 2019-11-15 01:51:06Z, errorcode: IH400131."}' headers: cache-control: @@ -12163,7 +12615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:52 GMT + - Fri, 15 Nov 2019 01:51:05 GMT expires: - '-1' pragma: @@ -12208,7 +12660,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:42:53 GMT + - Fri, 15 Nov 2019 01:51:07 GMT expires: - '-1' pragma: @@ -12256,7 +12708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:54 GMT + - Fri, 15 Nov 2019 01:51:07 GMT expires: - '-1' pragma: @@ -12298,8 +12750,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLWc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xgc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -12308,7 +12760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:54 GMT + - Fri, 15 Nov 2019 01:51:07 GMT expires: - '-1' pragma: @@ -12327,7 +12779,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVLWc=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xgc=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": @@ -12335,7 +12787,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 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": @@ -12360,7 +12812,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVLWc=''}' + - '{''IF-MATCH'': ''AAAAAAl1xgc=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -12372,15 +12824,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLWc=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:42:24 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:42:24 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:42:24 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:42:24 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:42:24 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:42:24 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:42:24 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:42:24 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xgc=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:50:36 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:50:36 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:50:36 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:50:36 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:50:36 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:50:36 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:50:36 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:50:36 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODJjMGJlYTUtYjM1OS00MTUwLThjNGEtY2U4Y2IwMmEwZTk4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjUyMzc1NTUtNThkYy00ODZhLWIwYjgtY2JjZWMyMWJlOTkw?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -12388,7 +12840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:42:56 GMT + - Fri, 15 Nov 2019 01:51:11 GMT expires: - '-1' pragma: @@ -12400,7 +12852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -12421,7 +12873,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODJjMGJlYTUtYjM1OS00MTUwLThjNGEtY2U4Y2IwMmEwZTk4?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjUyMzc1NTUtNThkYy00ODZhLWIwYjgtY2JjZWMyMWJlOTkw?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -12433,7 +12885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:27 GMT + - Fri, 15 Nov 2019 01:51:41 GMT expires: - '-1' pragma: @@ -12471,8 +12923,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLdE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xog=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -12481,7 +12933,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:28 GMT + - Fri, 15 Nov 2019 01:51:42 GMT expires: - '-1' pragma: @@ -12528,7 +12980,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:43:30 GMT + - Fri, 15 Nov 2019 01:51:43 GMT expires: - '-1' pragma: @@ -12576,7 +13028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:30 GMT + - Fri, 15 Nov 2019 01:51:44 GMT expires: - '-1' pragma: @@ -12618,8 +13070,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLdE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xog=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -12628,7 +13080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:31 GMT + - Fri, 15 Nov 2019 01:51:44 GMT expires: - '-1' pragma: @@ -12675,7 +13127,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:43:31 GMT + - Fri, 15 Nov 2019 01:51:45 GMT expires: - '-1' pragma: @@ -12723,7 +13175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:31 GMT + - Fri, 15 Nov 2019 01:51:45 GMT expires: - '-1' pragma: @@ -12765,8 +13217,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLdE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xog=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -12775,7 +13227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:32 GMT + - Fri, 15 Nov 2019 01:51:46 GMT expires: - '-1' pragma: @@ -12822,7 +13274,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:43:32 GMT + - Fri, 15 Nov 2019 01:51:46 GMT expires: - '-1' pragma: @@ -12870,7 +13322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:33 GMT + - Fri, 15 Nov 2019 01:51:47 GMT expires: - '-1' pragma: @@ -12886,7 +13338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -12912,8 +13364,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLdE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xog=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -12922,7 +13374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:33 GMT + - Fri, 15 Nov 2019 01:51:47 GMT expires: - '-1' pragma: @@ -12941,7 +13393,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAlVLdE=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAl1xog=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": @@ -12949,7 +13401,7 @@ interactions: "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 300, "maxChunkSizeInBytes": 314572800, "encoding": "avro"}]}, "routes": [], + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": []}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": @@ -12974,7 +13426,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAlVLdE=''}' + - '{''IF-MATCH'': ''AAAAAAl1xog=''}' ParameterSetName: - -n -g --key User-Agent: @@ -12986,15 +13438,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLdE=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","secondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","secondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"kGtNDGFv+oQNf/CHGQNYVuxwpavks0LxqGwUSnR/044=","secondaryKey":"5QoztNjbUxPzprP0YEq6g/qIKgxWjHSjdXGdgC3OhB8=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"XUql0vqThwpxJYQdgwJupRblxhhSZawCWju+JK8+vhw=","secondaryKey":"Cho04UtMcC8kuaFufeVOhUx+nM3ukOBIa+v2zQxvhoQ=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"g6aajM9sp6UQHDD9oles6psL9s6H8wfA37nO70Ncz6I=","secondaryKey":"+WL8UYnHqt7BdZvxgbJEjjMoiXqSKChajUdaB1rlFFU=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-64a3346b-e11c-4345-91d2-94be005a4285-iothub","PrimaryKey":"3JB2auoz9o1EqWZn8t8aOfGdeXPAew+1BxJEf8rU5no=","SecondaryKey":"PTVGzqXER6rx19+0msrvRF9llVNNdqtbkYJsQHlOdeQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:43:03 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:43:03 GMT"},{"KeyName":"owner-1072b52b-9411-435a-9a0f-508b0f25dfa2-iothub","PrimaryKey":"up3EdnvyMkJCJyhd6D7UZOIMbrRtiyfOwp7f4MBbklA=","SecondaryKey":"6jG3g589DsyCQiQSb2thYDw7R3lvcbGOfpq4Z9ryEfw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 09 Nov 2019 01:43:03 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:43:03 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"TxXR3H/xP+pECm5oXWIUA3u9FrC3BlicDw3aywom42I=","SecondaryKey":"AlkjK0pWqtwNN4hsYpPJSEmYBbBn1xE+c2Go/5axVKc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:43:03 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:43:03 GMT"},{"KeyName":"service","PrimaryKey":"vytyT4Su9NAp5nvIVetWw+iuCH2wHFqDlVk8TKuj7mU=","SecondaryKey":"RZ9si9va2WgU49hg/F3iQLcIs+9Ymt4icq4k30T4fpA=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 09 Nov 2019 01:43:03 GMT","ModifiedTime":"Sat, 09 Nov 2019 01:43:03 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xog=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","secondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","secondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"+ROC+eykRNCSgf5zVBzNh/BnLi/xN1NZWHbTHOM5lMU=","secondaryKey":"Onvv9o0QDswOxHLQ1ZEZ/3fUXNArrsgza7prKcoMIfs=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"rFZxCFytbWAmSVDnV0R6gdRR1WEze3TLaOL5phY57rw=","secondaryKey":"tVELeB9MqreQxr5+5IrLtagPf8rJEDOYDIVeL4yExno=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"K+PCTujoPds6Ku0SsMc/WY2AHiJ3VbwlbypvQHdW6ZM=","secondaryKey":"G4oNpSswU5Lr9fw6YJwr0IsdyUpzA/PFJSCRLVbGEFM=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-e9fec928-932f-47a6-acd9-816fad1caf8d-iothub","PrimaryKey":"7mmc1BOS4H72as8ABFePLCrMmyMY316SnuB+uBTmEvQ=","SecondaryKey":"mETAbruWY8uia+terXB1V/b03JX5S8NWGS9N7ZAAHJ0=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:51:19 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:51:19 GMT"},{"KeyName":"owner-400700a8-d9a9-483d-8ad1-d6b82837157f-iothub","PrimaryKey":"vdsMDy9GGUegIf7994M/kT19PuUcDyPsO1z8IIWtxaY=","SecondaryKey":"UWsziEZUFFvP/5NKOJtrStTmX/Y5XEa9Y8lgmd0n8zU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, + 15 Nov 2019 01:51:19 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:51:19 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"ycYwrfZfN0MsxPGsHdq7ikA2xifWQsF+jej+CwuK7Bw=","SecondaryKey":"fSKGnWCotQ7exhbFtoDCMxEKaVj472po3dovPYt5lFQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:51:19 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:51:19 GMT"},{"KeyName":"service","PrimaryKey":"kefKInu2Y2JFfij+2pKkfyMhcAdyEg4iOQ1EJB9kXFM=","SecondaryKey":"FQXVx4K9DvUQnVOkP59xYCdGu3K03L4kuf67+b3n8FU=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, + 15 Nov 2019 01:51:19 GMT","ModifiedTime":"Fri, 15 Nov 2019 01:51:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzRiYjRmZDItZGViYy00MjA0LWJlM2QtMjRlYWEyMjZiYmVl?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzI2ZWFlZjYtNDlhZS00YWQzLWJmNDYtNTY1ZDBjYjliMzZk?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -13002,7 +13454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:43:36 GMT + - Fri, 15 Nov 2019 01:51:51 GMT expires: - '-1' pragma: @@ -13035,7 +13487,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzRiYjRmZDItZGViYy00MjA0LWJlM2QtMjRlYWEyMjZiYmVl?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzI2ZWFlZjYtNDlhZS00YWQzLWJmNDYtNTY1ZDBjYjliMzZk?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13047,7 +13499,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:44:07 GMT + - Fri, 15 Nov 2019 01:52:21 GMT expires: - '-1' pragma: @@ -13085,8 +13537,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVLlA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-c293010a37.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl1xt4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-e2969ff231.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -13095,7 +13547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:44:08 GMT + - Fri, 15 Nov 2019 01:52:21 GMT expires: - '-1' pragma: @@ -13142,7 +13594,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -13150,11 +13602,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:44:10 GMT + - Fri, 15 Nov 2019 01:52:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih pragma: - no-cache server: @@ -13185,7 +13637,54 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Nov 2019 01:52: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub manual-failover + Connection: + - keep-alive + ParameterSetName: + - -n -g --failover-region + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13197,7 +13696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:44:25 GMT + - Fri, 15 Nov 2019 01:53:10 GMT expires: - '-1' pragma: @@ -13232,7 +13731,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13244,7 +13743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:44:55 GMT + - Fri, 15 Nov 2019 01:53:40 GMT expires: - '-1' pragma: @@ -13279,7 +13778,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13291,7 +13790,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:45:25 GMT + - Fri, 15 Nov 2019 01:54:11 GMT expires: - '-1' pragma: @@ -13326,7 +13825,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13338,7 +13837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:45:56 GMT + - Fri, 15 Nov 2019 01:54:41 GMT expires: - '-1' pragma: @@ -13373,7 +13872,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13385,7 +13884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:46:26 GMT + - Fri, 15 Nov 2019 01:55:13 GMT expires: - '-1' pragma: @@ -13420,7 +13919,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13432,7 +13931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:46:58 GMT + - Fri, 15 Nov 2019 01:55:42 GMT expires: - '-1' pragma: @@ -13467,7 +13966,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13479,7 +13978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:47:27 GMT + - Fri, 15 Nov 2019 01:56:13 GMT expires: - '-1' pragma: @@ -13514,7 +14013,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13526,7 +14025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:47:58 GMT + - Fri, 15 Nov 2019 01:56:43 GMT expires: - '-1' pragma: @@ -13561,7 +14060,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13573,7 +14072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:48:29 GMT + - Fri, 15 Nov 2019 01:57:14 GMT expires: - '-1' pragma: @@ -13608,7 +14107,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13620,7 +14119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:48:59 GMT + - Fri, 15 Nov 2019 01:57:44 GMT expires: - '-1' pragma: @@ -13655,7 +14154,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13667,7 +14166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:49:29 GMT + - Fri, 15 Nov 2019 01:58:15 GMT expires: - '-1' pragma: @@ -13702,7 +14201,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13714,7 +14213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:50:00 GMT + - Fri, 15 Nov 2019 01:58:45 GMT expires: - '-1' pragma: @@ -13749,7 +14248,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13761,7 +14260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:50:30 GMT + - Fri, 15 Nov 2019 01:59:16 GMT expires: - '-1' pragma: @@ -13796,7 +14295,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13808,7 +14307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:51:00 GMT + - Fri, 15 Nov 2019 01:59:47 GMT expires: - '-1' pragma: @@ -13843,7 +14342,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13855,7 +14354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:51:31 GMT + - Fri, 15 Nov 2019 02:00:17 GMT expires: - '-1' pragma: @@ -13890,7 +14389,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -13902,7 +14401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:52:02 GMT + - Fri, 15 Nov 2019 02:00:47 GMT expires: - '-1' pragma: @@ -13937,7 +14436,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjg1NzkwN2EtOTA3Ny00OTY5LTg2OGYtYWIzMWI3MjViZGI3?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQzYzc1OWYtODUwOC00NWYwLTlmNDctM2YxMzU3YmIwNGNj?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13949,7 +14448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:52:32 GMT + - Fri, 15 Nov 2019 02:01:18 GMT expires: - '-1' pragma: @@ -13996,7 +14495,7 @@ interactions: content-length: - '0' date: - - Sat, 09 Nov 2019 01:52:32 GMT + - Fri, 15 Nov 2019 02:01:18 GMT expires: - '-1' pragma: @@ -14044,7 +14543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:52:33 GMT + - Fri, 15 Nov 2019 02:01:19 GMT expires: - '-1' pragma: @@ -14086,8 +14585,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1?api-version=2019-03-22-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVOJE=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-39142ce710.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl10PE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-d95cc7cd7e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -14096,7 +14595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:52:33 GMT + - Fri, 15 Nov 2019 02:01:19 GMT expires: - '-1' pragma: @@ -14171,7 +14670,7 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAX8J3c=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test","name":"skintali-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAAX9ccI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"skintali-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-test","endpoint":"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAjZURY=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAZj96E=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5","name":"sapan-iot-5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAl0jY0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-5","endpoint":"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting","name":"manualFailoverTesting","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAZ7syc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"manualFailoverTesting.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"manualfailovertesting","endpoint":"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpEVk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAZpMdA=","properties":{"locations":[{"location":"West @@ -14198,11 +14697,10 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAhhTfw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAfO818=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash","name":"edgeBugBash","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rkessler","etag":"AAAAAAf2lW0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAggMIc=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"edgeBugBash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"edgebugbash","endpoint":"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAAl0FqQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"abcdefg","id":"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"enrichments":[{"key":"abc","value":"abcdefgh","endpointNames":["events"]}],"routes":[{"name":"r1","source":"DeviceMessages","condition":"abc = ''def''","endpointNames":["abcdefg"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus","name":"iot-hub-rezas-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rezas-rg","etag":"AAAAAAhrj9A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4","name":"iothub-nprr4","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol","etag":"AAAAAAg3mAk=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-nprr4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-nprr4","endpoint":"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4","name":"DeviceNotifications","id":"bc10f706-8fed-4d5a-840e-be26ba4dfa5e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-rezas-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-rezas-westus","endpoint":"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****","containerName":"test"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps","name":"sansun-ps","type":"Microsoft.Devices/IotHubs","location":"koreasouth","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sansunRG","etag":"AAAAAAg4RxA=","properties":{"locations":[{"location":"Korea South","role":"primary"},{"location":"Korea Central","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sansun-ps.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sansun-ps","endpoint":"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub","name":"distributed-tracing-iothub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAhWqiE=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"distributed-tracing-iothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"distributed-tracing-iothu","endpoint":"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"iothub-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"d6e50290-1aec-4054-b93c-a74a461019da","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage-endpoint","id":"5b637589-2dc6-4fd5-a2e0-20cd34e53380","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****","containerName":"json-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"json-format","id":"bd08b5d6-e414-4c15-b00e-47ebd0233137","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"storage","source":"DeviceMessages","condition":"true","endpointNames":["json-format"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing","name":"rentu-test-distributed-tracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"distributed-tracing","etag":"AAAAAAiwOOI=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rentu-test-distributed-tracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rentu-test-distributed-tr","endpoint":"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****","containerName":"routing-message","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routing-to-storage","id":"2faa9116-b355-4575-bec1-edfc8dec7a66","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"distributed-tracing"}]},"routes":[{"name":"test-routing","source":"DeviceMessages","condition":"true","endpointNames":["routing-to-storage"],"isEnabled":true},{"name":"buildin","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"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub","name":"alekseyhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aleksey","etag":"AAAAAAiHDhY=","properties":{"locations":[{"location":"West @@ -14229,21 +14727,25 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAknA9M=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-testhub1","name":"shishu-testhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAAk+Jlk=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlJaao=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-testhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shishu-testhub1","endpoint":"sb://iothub-ns-shishu-tes-2363269-9ed3f5a4f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://shishualias2.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic5","name":"mysb3","id":"54b13542-bf5b-47ac-8b09-91c24f255a6d","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=shishuotherregion;AccountKey=****","containerName":"adlsgen2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adlsep","id":"cf7fe5a6-503b-471d-aeb7-5b1a42bd95cb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}]},"routes":[{"name":"adlsroute","source":"DeviceMessages","condition":"true","endpointNames":["adlsep"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest","name":"aajollyiothubtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"aajollyIothub","etag":"AAAAAAlvdts=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"aajollyiothubtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"aajollyiothubtest","endpoint":"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc","name":"aakashehns","id":"09e419db-19ef-416e-b686-473e2a786719","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939","name":"icm154349939","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"icm154349939","etag":"AAAAAAkhkZw=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"icm154349939.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"icm154349939","endpoint":"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub1","name":"juanhub1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk989o=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub1","endpoint":"sb://iothub-ns-juanhub1-2426148-c0b0298421.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=juanstore1;AccountKey=****","containerName":"juancontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"juanstorage","id":"37449dfe-3c79-4999-8059-d8c30f4796b6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"juan-test"}]},"routes":[{"name":"TrueBuiltInEndpoint","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"juanstorage","source":"DeviceMessages","condition":"false","endpointNames":["juanstorage"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juanhub2","name":"juanhub2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"juan-test","etag":"AAAAAAk9oc8=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAlVOJE=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2447721-39142ce710.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"Storage1","id":"ef124e23-72e2-43df-b1fc-340c6e8fa093","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juanhub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juanhub2","endpoint":"sb://iothub-ns-juanhub2-2426422-f893647246.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"juandefaultroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk","name":"iothub-vxohk","type":"Microsoft.Devices/IotHubs","location":"southcentralus","tags":{"IotSuiteType":"RemoteMonitoringV2"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jlian-real-life-sol-2","etag":"AAAAAAllFF4=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-vxohk.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-vxohk","endpoint":"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk","name":"DeviceNotifications","id":"bf844d52-9189-4162-b1a3-b79a59dc7132","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jlian-real-life-sol-2"}],"storageContainers":[]},"routes":[{"name":"TwinRoute","source":"TwinChangeEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true},{"name":"LifecycleRoute","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["DeviceNotifications"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-2/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-2","name":"csharp-iotuap-eastus-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-2","etag":"AAAAAAlpbgY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-2","endpoint":"sb://iothub-ns-csharp-iot-2466380-62cd691726.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":"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":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-iot-tests-rg/providers/Microsoft.Devices/IotHubs/control-plane-iot-hub","name":"control-plane-iot-hub","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"control-plane-iot-tests-rg","etag":"AAAAAAlzD9w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"control-plane-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"control-plane-iot-hub","endpoint":"sb://iothub-ns-control-pl-2475308-b0be7409c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-1","name":"iot-hub-for-test-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAAAl10PE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-1","endpoint":"sb://iothub-ns-iot-hub-fo-2477719-d95cc7cd7e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"daa36ce3-226c-4fdf-ab69-4bc5e2369134","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=iothubteststorage1;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '157485' + - '160607' content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:52:46 GMT + - Fri, 15 Nov 2019 02:01:33 GMT expires: - '-1' pragma: @@ -14288,7 +14790,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjUxNjU4OTMtYWMxOS00Zjc3LWE2MGItYTAyNWFkYTRjZDI1?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJlODAzNDItOWQ5My00NzBlLWIxZTktZmMxYTEwYzE0MjM5?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -14296,11 +14798,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:52:47 GMT + - Fri, 15 Nov 2019 02:01:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjUxNjU4OTMtYWMxOS00Zjc3LWE2MGItYTAyNWFkYTRjZDI1?api-version=2019-03-22-preview&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJlODAzNDItOWQ5My00NzBlLWIxZTktZmMxYTEwYzE0MjM5?api-version=2019-03-22-preview&operationSource=os_ih pragma: - no-cache server: @@ -14331,7 +14833,7 @@ interactions: - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-iothub/0.8.2 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjUxNjU4OTMtYWMxOS00Zjc3LWE2MGItYTAyNWFkYTRjZDI1?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJlODAzNDItOWQ5My00NzBlLWIxZTktZmMxYTEwYzE0MjM5?api-version=2019-03-22-preview&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -14343,7 +14845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 09 Nov 2019 01:53:03 GMT + - Fri, 15 Nov 2019 02:01:50 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 ed7a0d291d9..4400309d9d2 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 @@ -216,6 +216,9 @@ def test_iot_hub(self, resource_group, resource_group_location): storage_endpoint_name = 'Storage1' storage_endpoint_type = 'azurestoragecontainer' storage_encoding_format = 'avro' + storage_chunk_size = 150 + storage_batch_frequency = 100 + storage_file_name_format = '{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}' # Test 'az iot hub routing-endpoint create' self.cmd('iot hub routing-endpoint create --hub-name {0} -g {1} -n {2} -t {3} -r {4} -s {5} -c "{6}"' .format(hub, rg, endpoint_name, endpoint_type, rg, subscription_id, ehConnectionString), @@ -246,16 +249,21 @@ def test_iot_hub(self, resource_group, resource_group_location): self.check('name', endpoint_name)]) # Test 'az iot hub routing-endpoint create' with storage endpoint - self.cmd('iot hub routing-endpoint create --hub-name {0} -g {1} -n {2} -t {3} -r {4} -s {5} -c "{6}" ' - '--container-name {7} --encoding {8}' - .format(hub, rg, storage_endpoint_name, storage_endpoint_type, rg, subscription_id, - storageConnectionString, containerName, storage_encoding_format), - checks=[self.check('length(storageContainers[*])', 1), - self.check('storageContainers[0].containerName', containerName), - self.check('storageContainers[0].name', storage_endpoint_name), - self.check('length(serviceBusQueues[*])', 0), - self.check('length(serviceBusTopics[*])', 0), - self.check('length(eventHubs[*])', 1)]) + endpoint = self.cmd('iot hub routing-endpoint create --hub-name {0} -g {1} -n {2} -t {3} -r {4} -s {5} ' + '-c "{6}" --container-name {7} --encoding {8} -b {9} -w {10}' + .format(hub, rg, storage_endpoint_name, storage_endpoint_type, rg, subscription_id, + storageConnectionString, containerName, storage_encoding_format, + storage_batch_frequency, storage_chunk_size)).get_output_in_json() + + assert len(endpoint['storageContainers']) == 1 + assert endpoint["storageContainers"][0]["containerName"] == containerName + assert endpoint["storageContainers"][0]["name"] == storage_endpoint_name + assert endpoint["storageContainers"][0]["batchFrequencyInSeconds"] == storage_batch_frequency + assert endpoint["storageContainers"][0]["maxChunkSizeInBytes"] == 1048576 * storage_chunk_size + assert endpoint["storageContainers"][0]["fileNameFormat"] == storage_file_name_format + assert len(endpoint['serviceBusQueues']) == 0 + assert len(endpoint['serviceBusTopics']) == 0 + assert len(endpoint['eventHubs']) == 1 # Test 'az iot hub route create' route_name = 'route1'