diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj
index b808517ec7d2..8e0da3eef65c 100644
--- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj
+++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/IotHub/IotHub.Test/IotHub.Test.csproj b/src/IotHub/IotHub.Test/IotHub.Test.csproj
index 7d4985efc3ab..493bf1228665 100644
--- a/src/IotHub/IotHub.Test/IotHub.Test.csproj
+++ b/src/IotHub/IotHub.Test/IotHub.Test.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.cs b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.cs
new file mode 100644
index 000000000000..f246cc03cf70
--- /dev/null
+++ b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.cs
@@ -0,0 +1,40 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.ServiceManagement.Common.Models;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
+using Xunit;
+using Xunit.Abstractions;
+
+namespace Microsoft.Azure.Commands.IotHub.Test.ScenarioTests
+{
+ public class IotHubDPDeviceTests : RMTestBase
+ {
+ public XunitTracingInterceptor _logger;
+
+ public IotHubDPDeviceTests(ITestOutputHelper output)
+ {
+ _logger = new XunitTracingInterceptor(output);
+ XunitTracingInterceptor.AddToContext(_logger);
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
+ public void TestAzureIotHubDeviceLifecycle()
+ {
+ IotHubController.NewInstance.RunPsTest(_logger, "Test-AzureRmIotHubDeviceLifecycle");
+ }
+ }
+}
diff --git a/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1
new file mode 100644
index 000000000000..894dfd340480
--- /dev/null
+++ b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1
@@ -0,0 +1,93 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+
+#################################
+## IotHub Device Cmdlets ##
+#################################
+
+<#
+.SYNOPSIS
+Test all iothub device cmdlets
+#>
+function Test-AzureRmIotHubDeviceLifecycle
+{
+ $Location = Get-Location "Microsoft.Devices" "IotHubs"
+ $IotHubName = getAssetName
+ $ResourceGroupName = getAssetName
+ $Sku = "S1"
+ $device1 = getAssetName
+ $device2 = getAssetName
+ $device3 = getAssetName
+ $primaryThumbprint = '38303FC7371EC78DDE3E18D732C8414EE50969C7'
+ $secondaryThumbprint = 'F54465586FBAF4AC269851424A592254C8861BE7'
+
+ # Create Resource Group
+ $resourceGroup = New-AzResourceGroup -Name $ResourceGroupName -Location $Location
+
+ # Create Iot Hub
+ $iothub = New-AzIotHub -Name $IotHubName -ResourceGroupName $ResourceGroupName -Location $Location -SkuName $Sku -Units 1
+
+ # Get all devices
+ $devices = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName
+ Assert-True { $devices.Count -eq 0 }
+
+ # Add iot device with symmetric authentication
+ $newDevice1 = Add-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device1 -AuthMethod 'shared_private_key'
+ Assert-True { $newDevice1.Id -eq $device1 }
+ Assert-True { $newDevice1.Authentication.Type -eq 'Sas' }
+ Assert-False { $newDevice1.Capabilities.IotEdge }
+
+ # Add iot device with selfsigned authentication
+ $newDevice2 = Add-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device2 -AuthMethod 'x509_thumbprint' -PrimaryThumbprint $primaryThumbprint -SecondaryThumbprint $secondaryThumbprint
+ Assert-True { $newDevice2.Id -eq $device2 }
+ Assert-True { $newDevice2.Authentication.Type -eq 'SelfSigned' }
+ Assert-False { $newDevice2.Capabilities.IotEdge }
+
+ # Add iot device with certifictae authority authentication
+ $newDevice3 = Add-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device3 -AuthMethod 'x509_ca'
+ Assert-True { $newDevice3.Id -eq $device3 }
+ Assert-True { $newDevice3.Authentication.Type -eq 'CertificateAuthority' }
+ Assert-False { $newDevice3.Capabilities.IotEdge }
+
+ # Get all devices
+ $devices = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName
+ Assert-True { $devices.Count -eq 3}
+
+ # Update Device
+ $updatedDevice1 = Set-AzIoTHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device1 -Status 'Disabled' -StatusReason 'Reason1'
+ Assert-True { $updatedDevice1.Id -eq $device1 }
+ Assert-True { $updatedDevice1.Status -eq 'Disabled' }
+ Assert-True { $updatedDevice1.StatusReason -eq 'Reason1' }
+
+ # Update iot device to edge device
+ $updatedDevice2 = Set-AzIoTHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device3 -EdgeEnabled $true
+ Assert-True { $updatedDevice2.Capabilities.IotEdge }
+
+ # Get device detail
+ $iotDevice = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device1
+ Assert-True { $iotDevice.Id -eq $device1 }
+ Assert-True { $iotDevice.Authentication.Type -eq 'Sas' }
+ Assert-False { $iotDevice.Capabilities.IotEdge }
+ Assert-True { $iotDevice.Status -eq 'Disabled' }
+ Assert-True { $iotDevice.StatusReason -eq 'Reason1' }
+
+ # Delete iot device
+ $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device1 -Passthru
+ Assert-True { $result }
+
+ # Delete all devices
+ $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -Passthru
+ Assert-True { $result }
+}
\ No newline at end of file
diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json
new file mode 100644
index 000000000000..cf2031cd1570
--- /dev/null
+++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json
@@ -0,0 +1,1765 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3377f849-3388-4a8e-83f4-50786a1d1387"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "f41edc86-d8b4-46ac-9917-ffd4c306c577"
+ ],
+ "x-ms-correlation-request-id": [
+ "f41edc86-d8b4-46ac-9917-ffd4c306c577"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200210T183825Z:f41edc86-d8b4-46ac-9917-ffd4c306c577"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:38:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "5705"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps8272?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzODI3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fc54151-61fd-4999-9824-eb7aa0266be7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "119bff95-e425-40ed-90a3-c25abcffddc2"
+ ],
+ "x-ms-correlation-request-id": [
+ "119bff95-e425-40ed-90a3-c25abcffddc2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200210T183826Z:119bff95-e425-40ed-90a3-c25abcffddc2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:38:25 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272\",\r\n \"name\": \"ps8272\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82d9a136-2e6f-4a1f-80f7-ec1296a61266"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "85"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWMyMTdhMTItZjc1NS00ZTJjLTkzNDAtMjFmNTFhNDhhZGIy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "4999"
+ ],
+ "x-ms-request-id": [
+ "fedbf8f6-2bb4-45af-884e-3bf8d53c02d4"
+ ],
+ "x-ms-correlation-request-id": [
+ "fedbf8f6-2bb4-45af-884e-3bf8d53c02d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T183844Z:fedbf8f6-2bb4-45af-884e-3bf8d53c02d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:38:44 GMT"
+ ],
+ "Content-Length": [
+ "619"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWMyMTdhMTItZjc1NS00ZTJjLTkzNDAtMjFmNTFhNDhhZGIy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldNeU1UZGhNVEl0WmpjMU5TMDBaVEpqTFRrek5EQXRNakZtTlRGaE5EaGhaR0l5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "4221959b-f823-4ede-a4d2-2be3491a60e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "4221959b-f823-4ede-a4d2-2be3491a60e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T183915Z:4221959b-f823-4ede-a4d2-2be3491a60e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:39:14 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWMyMTdhMTItZjc1NS00ZTJjLTkzNDAtMjFmNTFhNDhhZGIy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldNeU1UZGhNVEl0WmpjMU5TMDBaVEpqTFRrek5EQXRNakZtTlRGaE5EaGhaR0l5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "deefb15e-9bf0-4598-af9f-e16a4cd1fdf1"
+ ],
+ "x-ms-correlation-request-id": [
+ "deefb15e-9bf0-4598-af9f-e16a4cd1fdf1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T183945Z:deefb15e-9bf0-4598-af9f-e16a4cd1fdf1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:39:45 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWMyMTdhMTItZjc1NS00ZTJjLTkzNDAtMjFmNTFhNDhhZGIy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldNeU1UZGhNVEl0WmpjMU5TMDBaVEpqTFRrek5EQXRNakZtTlRGaE5EaGhaR0l5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "692e1bbd-c4e6-4e84-955b-ffa689843746"
+ ],
+ "x-ms-correlation-request-id": [
+ "692e1bbd-c4e6-4e84-955b-ffa689843746"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184015Z:692e1bbd-c4e6-4e84-955b-ffa689843746"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:15 GMT"
+ ],
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "30b56f80-b889-4bba-bf82-0125a282f1a5"
+ ],
+ "x-ms-correlation-request-id": [
+ "30b56f80-b889-4bba-bf82-0125a282f1a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184016Z:30b56f80-b889-4bba-bf82-0125a282f1a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:15 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0be96706-b65c-4261-8fa2-2f046f8f1d9c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "ac41cffc-c9a5-4f9c-8135-d14ee23cbf2a"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac41cffc-c9a5-4f9c-8135-d14ee23cbf2a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184016Z:ac41cffc-c9a5-4f9c-8135-d14ee23cbf2a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:16 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0dff344-c19f-48cb-bf7a-325ccdadb2d4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "54f01d0b-a14d-4671-9371-c2be5a3cb5af"
+ ],
+ "x-ms-correlation-request-id": [
+ "54f01d0b-a14d-4671-9371-c2be5a3cb5af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184017Z:54f01d0b-a14d-4671-9371-c2be5a3cb5af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:16 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d8ff0c6-916c-4cb7-bd1f-1f78b7e68631"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "7207bcf7-0f07-41ad-bfc1-6b9cd50a54d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "7207bcf7-0f07-41ad-bfc1-6b9cd50a54d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184018Z:7207bcf7-0f07-41ad-bfc1-6b9cd50a54d7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:17 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc4f5a26-28dd-4fd4-bebe-eee1f6dfc65e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "3ab3b8c2-3ecc-4b49-94e8-bad4a02f57eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ab3b8c2-3ecc-4b49-94e8-bad4a02f57eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184018Z:3ab3b8c2-3ecc-4b49-94e8-bad4a02f57eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:18 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b451d61e-33f7-46a0-aa86-a6db5b4a18d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "7a157785-7a0d-405c-a355-3ffea16e8413"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a157785-7a0d-405c-a355-3ffea16e8413"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184019Z:7a157785-7a0d-405c-a355-3ffea16e8413"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:19 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d246406-632b-49fd-bbce-a210c506f7d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "1d1278b3-bfb4-4555-ba8d-503d8f791a93"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d1278b3-bfb4-4555-ba8d-503d8f791a93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184020Z:1d1278b3-bfb4-4555-ba8d-503d8f791a93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:19 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f088eb7e-8f31-493b-8595-dc80e71cd1cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "9520132e-4f85-487e-9e1f-6a49fcda90e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "9520132e-4f85-487e-9e1f-6a49fcda90e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184021Z:9520132e-4f85-487e-9e1f-6a49fcda90e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:20 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f821baa-bf27-48a9-af9f-72a62475f797"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "47acc8c9-f914-4212-8712-6d8e1bab4d43"
+ ],
+ "x-ms-correlation-request-id": [
+ "47acc8c9-f914-4212-8712-6d8e1bab4d43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184022Z:47acc8c9-f914-4212-8712-6d8e1bab4d43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:21 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c11b08f3-5c77-4d52-935c-641410957397"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "70c7fc73-1bf4-4ce8-a114-401fab7b5819"
+ ],
+ "x-ms-correlation-request-id": [
+ "70c7fc73-1bf4-4ce8-a114-401fab7b5819"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184023Z:70c7fc73-1bf4-4ce8-a114-401fab7b5819"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:22 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "99761805-52f2-48cb-a38d-8e6b76e80572"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "bc812dc0-f2be-4080-be76-b782bde4dd38"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc812dc0-f2be-4080-be76-b782bde4dd38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184023Z:bc812dc0-f2be-4080-be76-b782bde4dd38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:23 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d43a6c4-7b4f-4cb0-8cb8-de4b8c99d864"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "6fd1cb12-a23c-403c-9a1d-78de9250ef0c"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fd1cb12-a23c-403c-9a1d-78de9250ef0c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184024Z:6fd1cb12-a23c-403c-9a1d-78de9250ef0c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:24 GMT"
+ ],
+ "Content-Length": [
+ "1460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8272\",\r\n \"etag\": \"AAAAAAtR7Qs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8874.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8874\",\r\n \"endpoint\": \"sb://iothub-ns-ps8874-2910676-f51d1afcdc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d2cf4dd8-2c61-440c-9d62-783efe7ca854"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "6925bee0-f9f2-44e9-aac3-f1510221eddd"
+ ],
+ "x-ms-correlation-request-id": [
+ "6925bee0-f9f2-44e9-aac3-f1510221eddd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184017Z:6925bee0-f9f2-44e9-aac3-f1510221eddd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:16 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3c27ad37-28b5-46ad-b37e-cf88e59ac0a5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "37f40d1f-2ab1-4b94-9304-5ec8777436ba"
+ ],
+ "x-ms-correlation-request-id": [
+ "37f40d1f-2ab1-4b94-9304-5ec8777436ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184018Z:37f40d1f-2ab1-4b94-9304-5ec8777436ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:17 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bc9de2d-bd0a-41ea-a739-bb0cbe658ada"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "e270dea4-f7b9-4ca5-bae3-d309447507b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "e270dea4-f7b9-4ca5-bae3-d309447507b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184019Z:e270dea4-f7b9-4ca5-bae3-d309447507b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:18 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "314d89ed-10f2-418d-b0c2-a552c8aa724c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "baa480bc-698e-470a-8521-cd901be35600"
+ ],
+ "x-ms-correlation-request-id": [
+ "baa480bc-698e-470a-8521-cd901be35600"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184019Z:baa480bc-698e-470a-8521-cd901be35600"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:19 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52cabbbe-f604-47f3-881c-07c134873cec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-request-id": [
+ "dd983089-2f0d-43e6-8087-2fa1de2574b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd983089-2f0d-43e6-8087-2fa1de2574b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184020Z:dd983089-2f0d-43e6-8087-2fa1de2574b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:20 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb11a6ff-d29f-4a27-a23f-f3e84798440f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-request-id": [
+ "bb7dd2cb-be92-4a85-bfe2-e09e72a618e5"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb7dd2cb-be92-4a85-bfe2-e09e72a618e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184021Z:bb7dd2cb-be92-4a85-bfe2-e09e72a618e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:21 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7fc67e3b-16dd-4da3-bdc6-f1a8bae5d84e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-request-id": [
+ "f412d060-4878-47d7-8d53-61c133c342ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "f412d060-4878-47d7-8d53-61c133c342ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184022Z:f412d060-4878-47d7-8d53-61c133c342ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:21 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c68f7f0-a129-41b2-821d-0cc050ad8439"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-request-id": [
+ "c4ec6b85-da2c-46f1-bb05-d6d605dd31e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4ec6b85-da2c-46f1-bb05-d6d605dd31e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184023Z:c4ec6b85-da2c-46f1-bb05-d6d605dd31e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:22 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fb03ec46-69ce-42c9-b808-c739531e1250"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-request-id": [
+ "0feaa8e7-aa9c-4f75-82f5-9dbc8914cc82"
+ ],
+ "x-ms-correlation-request-id": [
+ "0feaa8e7-aa9c-4f75-82f5-9dbc8914cc82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184024Z:0feaa8e7-aa9c-4f75-82f5-9dbc8914cc82"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:23 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8272/providers/Microsoft.Devices/IotHubs/ps8874/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg4NzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78960d2b-e159-4ce8-9789-bab7e83d3ca0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "f9829da1-753c-4998-ad9e-d3b06a289025"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9829da1-753c-4998-ad9e-d3b06a289025"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200210T184024Z:f9829da1-753c-4998-ad9e-d3b06a289025"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 10 Feb 2020 18:40:24 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"CZ21tOmJfMZHEnmj+N9X6gkvA9OxMFOotHmSOwTEjFY=\",\r\n \"secondaryKey\": \"rAqxJffwjBJzsB73fLNaBwTeWfCimLqGkbKH8DU5Dbw=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"YRjzGYk2DTYuhT6eM0Q1K2oY8eEV6Fh/cDM/XteJhm8=\",\r\n \"secondaryKey\": \"iIVrhB35P3/IueTXfQOhs7CE7bowB5dYcmvEeCI4YMI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jdhFPLaCf3RTwN0uWD4D5D9iqUhGmjEYxsxgk7ShILQ=\",\r\n \"secondaryKey\": \"mvho1livBpKeqfHMuZZBW+vtrVF2PJ3HUicNrImUsVI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hv/jt2uJ/bg7RRqEjtyFjwTc+Gh0/VKX69PsgxNq7dk=\",\r\n \"secondaryKey\": \"K+17CwW7iFzeIFgWpVAyuP7EeMqrE4tR7vvDodDT+WA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"eEoNA8719wMXRGhOna9gzcXfTw3WYJc7LFRE+MZaofY=\",\r\n \"secondaryKey\": \"XAYtogJK9Z+bzKz2xGEO58MDbiq3mSJXlfNeE38mmF8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-AzureRmIotHubDeviceLifecycle": [
+ "ps8874",
+ "ps8272",
+ "ps3026",
+ "ps3242",
+ "ps64"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0"
+ }
+}
\ No newline at end of file
diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json
index 7bad5a6dc3b1..59c908e646b1 100644
--- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json
+++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca045c89-82a7-4d20-bf3f-0481ae243020"
+ "dd9e56bc-edb4-43ad-aad0-e0a66790c55c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
]
},
"ResponseHeaders": {
@@ -27,16 +27,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11997"
],
"x-ms-request-id": [
- "b197918f-11f3-45a8-bdb6-4cdac17225fb"
+ "db46e88e-507e-4881-af3c-69392e5eab7d"
],
"x-ms-correlation-request-id": [
- "b197918f-11f3-45a8-bdb6-4cdac17225fb"
+ "db46e88e-507e-4881-af3c-69392e5eab7d"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195001Z:b197918f-11f3-45a8-bdb6-4cdac17225fb"
+ "WESTUS:20200122T225733Z:db46e88e-507e-4881-af3c-69392e5eab7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:50:00 GMT"
+ "Wed, 22 Jan 2020 22:57:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,29 +54,29 @@
"-1"
],
"Content-Length": [
- "4349"
+ "5555"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps636?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNjM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps7381?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNzM4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11a82564-45b9-4b68-b724-5585d85023c3"
+ "6abd3649-65e1-4ae7-811e-e34b1b2f4cbe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "ecae1760-3d75-43d9-8645-cab7529bf9a0"
+ "66586955-c8f3-4f6d-acf4-b6532d4bf1a8"
],
"x-ms-correlation-request-id": [
- "ecae1760-3d75-43d9-8645-cab7529bf9a0"
+ "66586955-c8f3-4f6d-acf4-b6532d4bf1a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195002Z:ecae1760-3d75-43d9-8645-cab7529bf9a0"
+ "WESTUS:20200122T225734Z:66586955-c8f3-4f6d-acf4-b6532d4bf1a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,10 +111,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:50:02 GMT"
+ "Wed, 22 Jan 2020 22:57:33 GMT"
],
"Content-Length": [
- "164"
+ "166"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,25 +123,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636\",\r\n \"name\": \"ps636\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381\",\r\n \"name\": \"ps7381\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "801341df-a1f3-466a-8f91-97006f85c968"
+ "ae0d0abd-9c89-46d8-88db-4968f65d8381"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -159,7 +159,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjZjNzk0NGMtZDU3Zi00YjQ1LTliNGYtNTRiNTA2ZGMzMTAy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZWNjMzQtZmZjNy00MDM0LTg0MzMtNjdmMTg0YzI3ZWEx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -168,13 +168,13 @@
"4999"
],
"x-ms-request-id": [
- "4693f48f-4528-436d-80e3-8fd0eb5dfa64"
+ "0193578f-a1ba-4a31-bb19-6c91e67dd30a"
],
"x-ms-correlation-request-id": [
- "4693f48f-4528-436d-80e3-8fd0eb5dfa64"
+ "0193578f-a1ba-4a31-bb19-6c91e67dd30a"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195018Z:4693f48f-4528-436d-80e3-8fd0eb5dfa64"
+ "WESTUS2:20200122T225751Z:0193578f-a1ba-4a31-bb19-6c91e67dd30a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -183,10 +183,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:50:17 GMT"
+ "Wed, 22 Jan 2020 22:57:50 GMT"
],
"Content-Length": [
- "619"
+ "621"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,32 +195,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju+Rw=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmrdg=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd742280-434f-4e05-b93e-87de8cebd99c"
+ "cd40d121-2071-48e7-a340-e9406c0c62f3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1752"
+ "1754"
]
},
"ResponseHeaders": {
@@ -231,7 +231,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDlhYzU4MmYtZDQ3Zi00OGE4LTg3ZTctZGJhMGNlMTI2NzQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2YzNGJkY2MtYzc0OS00NmVmLWEzNzItY2MwMDBjMTRjYzc0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,13 +240,13 @@
"4998"
],
"x-ms-request-id": [
- "c3a7e63b-6181-46e8-baa4-59ad6d7905e4"
+ "c06d64cf-5b4a-4c16-92bb-6a2c18ec0442"
],
"x-ms-correlation-request-id": [
- "c3a7e63b-6181-46e8-baa4-59ad6d7905e4"
+ "c06d64cf-5b4a-4c16-92bb-6a2c18ec0442"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195317Z:c3a7e63b-6181-46e8-baa4-59ad6d7905e4"
+ "WESTUS2:20200122T230119Z:c06d64cf-5b4a-4c16-92bb-6a2c18ec0442"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -255,10 +255,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:17 GMT"
+ "Wed, 22 Jan 2020 23:01:19 GMT"
],
"Content-Length": [
- "4245"
+ "4249"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -267,32 +267,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+Rw=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:51:39 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmrdg=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:59:34 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju+2M=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps8031\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"encoding\": \"json\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmsNQ=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps5270\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"encoding\": \"json\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0dfd2301-eeff-48dc-8407-2bcce11eec67"
+ "ed7eb72f-7202-4884-854f-79586e19c22f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2216"
+ "2218"
]
},
"ResponseHeaders": {
@@ -303,7 +303,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjQ0Y2E1ZmItMTlkZC00MzFiLWEyYzUtODI4ZDdhOWFmNGMy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGNlYjViMDUtNjBhYy00Zjk1LTliNzMtMGY3YmEzNzlkMzU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,13 +312,13 @@
"4997"
],
"x-ms-request-id": [
- "d6627b04-9e14-4843-8e90-a9d62f4fbc56"
+ "abb2a93c-4e95-416a-945d-df8e6718f1e7"
],
"x-ms-correlation-request-id": [
- "d6627b04-9e14-4843-8e90-a9d62f4fbc56"
+ "abb2a93c-4e95-416a-945d-df8e6718f1e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195351Z:d6627b04-9e14-4843-8e90-a9d62f4fbc56"
+ "WESTUS2:20200122T230153Z:abb2a93c-4e95-416a-945d-df8e6718f1e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -327,10 +327,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:51 GMT"
+ "Wed, 22 Jan 2020 23:01:53 GMT"
],
"Content-Length": [
- "4793"
+ "4797"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -339,32 +339,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+2M=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:25 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsNQ=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:01:26 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju+/o=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps8031\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps9952\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmsTs=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps5270\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps616\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2499df2-fda9-48db-b6f4-39c7a69327b8"
+ "b56ee02f-8b99-42f6-888b-46d4a45e81c7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2763"
+ "2764"
]
},
"ResponseHeaders": {
@@ -375,7 +375,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2VjZTg4NzktZDcyNy00NjlkLWI0OTctZDAxYTU4MDdlMDJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjZkNjRlODctNTIzMC00MTY3LTgzMzctNDA5NDgwNjRhYTUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -384,13 +384,13 @@
"4996"
],
"x-ms-request-id": [
- "6b1ea8ac-6f35-4831-8b73-9b89b395702f"
+ "919461d5-7b40-4008-a2e5-322bff707952"
],
"x-ms-correlation-request-id": [
- "6b1ea8ac-6f35-4831-8b73-9b89b395702f"
+ "919461d5-7b40-4008-a2e5-322bff707952"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195425Z:6b1ea8ac-6f35-4831-8b73-9b89b395702f"
+ "WESTUS2:20200122T230227Z:919461d5-7b40-4008-a2e5-322bff707952"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -399,10 +399,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:24 GMT"
+ "Wed, 22 Jan 2020 23:02:27 GMT"
],
"Content-Length": [
- "5342"
+ "5345"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -411,32 +411,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+/o=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:53:59 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsTs=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:00 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps8031\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9952\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps5270\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps616\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f2ebf98-096c-4694-bc94-e6189dce3539"
+ "cbc2b45b-8ec0-4066-a2fa-7c225f694fb5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "3065"
+ "3066"
]
},
"ResponseHeaders": {
@@ -447,7 +447,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTM3ZDM2OTMtYTljNS00OWExLTkwN2UtZTAxYjdlMDJmY2Rj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2U5MDM1MTktZmZiNy00MGY5LWI1NjUtNGEwNzcyNzcxMmVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -456,13 +456,13 @@
"4995"
],
"x-ms-request-id": [
- "1dfe14b5-03cb-4080-994c-061c81b75fe7"
+ "d853496e-07db-4662-a5e3-77896bc9dddf"
],
"x-ms-correlation-request-id": [
- "1dfe14b5-03cb-4080-994c-061c81b75fe7"
+ "d853496e-07db-4662-a5e3-77896bc9dddf"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195502Z:1dfe14b5-03cb-4080-994c-061c81b75fe7"
+ "WESTUS2:20200122T230303Z:d853496e-07db-4662-a5e3-77896bc9dddf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -471,10 +471,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:55:02 GMT"
+ "Wed, 22 Jan 2020 23:03:02 GMT"
],
"Content-Length": [
- "5419"
+ "5422"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -483,32 +483,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:54:34 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:02:35 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps8031\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9952\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps5270\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps616\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "448be491-42ec-4b08-8ed4-3e5502484027"
+ "c3d0295b-2f84-45a2-9f6f-45d7cb074f55"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "3065"
+ "3066"
]
},
"ResponseHeaders": {
@@ -519,7 +519,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMmZmOTllOGEtMGU2OS00YzdhLThhYWEtNGY2ZDkwZjA4YmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTIwOWI3ODItYTE4ZS00ZGNkLWI1MWUtZWM1M2I1YTMyMjg1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -528,13 +528,13 @@
"4994"
],
"x-ms-request-id": [
- "bdb58e7c-30ad-47ab-b287-72aada7209b3"
+ "c6850770-8a4d-4186-bfc8-dc883690118d"
],
"x-ms-correlation-request-id": [
- "bdb58e7c-30ad-47ab-b287-72aada7209b3"
+ "c6850770-8a4d-4186-bfc8-dc883690118d"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195622Z:bdb58e7c-30ad-47ab-b287-72aada7209b3"
+ "WESTUS2:20200122T230408Z:c6850770-8a4d-4186-bfc8-dc883690118d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -543,10 +543,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:21 GMT"
+ "Wed, 22 Jan 2020 23:04:07 GMT"
],
"Content-Length": [
- "5419"
+ "5422"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -555,25 +555,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:55:33 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:03:56 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju/ow=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps8031\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9952\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\",\r\n \"ps9952\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmsxE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps5270\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps616\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\",\r\n \"ps616\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "788c6e87-3dcc-4780-9805-7fadd7dd814a"
+ "b5cf883c-351f-4abe-857f-ec3c2dcaf5bf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -591,7 +591,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2VjNDQzZDgtZDdlMy00ZmU5LWIzYTctZTcxMGI0OWViMzQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzM1ZjY2ZDctNjZhYi00ZjgzLWIwZjgtOGEzNTE4NTc5YTIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -600,13 +600,13 @@
"4993"
],
"x-ms-request-id": [
- "8c187950-cfd7-4d00-92bd-522d77559ab7"
+ "14449df5-feb2-46f5-8242-efb0e63ec4f0"
],
"x-ms-correlation-request-id": [
- "8c187950-cfd7-4d00-92bd-522d77559ab7"
+ "14449df5-feb2-46f5-8242-efb0e63ec4f0"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195700Z:8c187950-cfd7-4d00-92bd-522d77559ab7"
+ "WESTUS2:20200122T230443Z:14449df5-feb2-46f5-8242-efb0e63ec4f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -615,10 +615,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:57:00 GMT"
+ "Wed, 22 Jan 2020 23:04:42 GMT"
],
"Content-Length": [
- "5428"
+ "5430"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -627,32 +627,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/ow=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:56:22 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\",\r\n \"ps9952\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsxE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:16 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\",\r\n \"ps616\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju/wI=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps8031\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9952\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArms70=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps5270\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps616\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ec0b40d-4ad2-4675-a9e7-d2ce68e1f18e"
+ "4acd2542-2d6f-46f7-a8a8-7a99e987061e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2912"
+ "2913"
]
},
"ResponseHeaders": {
@@ -663,7 +663,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2ZiODM3MGQtNTk4Yi00MWJhLTg2NDMtZmM5NGE5NDlkOWVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWRmOWUxYjItMjdhNS00ZTM0LWFiZTktZTNjZGNiM2MyNGM3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -672,13 +672,13 @@
"4992"
],
"x-ms-request-id": [
- "ee5a8822-f923-46f5-be61-dddec280c2ec"
+ "a0463c8e-4cac-4a08-84a4-75048f10e82f"
],
"x-ms-correlation-request-id": [
- "ee5a8822-f923-46f5-be61-dddec280c2ec"
+ "a0463c8e-4cac-4a08-84a4-75048f10e82f"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195736Z:ee5a8822-f923-46f5-be61-dddec280c2ec"
+ "WESTUS2:20200122T230517Z:a0463c8e-4cac-4a08-84a4-75048f10e82f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -687,10 +687,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:57:36 GMT"
+ "Wed, 22 Jan 2020 23:05:16 GMT"
],
"Content-Length": [
- "5359"
+ "5362"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -699,32 +699,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/wI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:07 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArms70=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:04:50 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju/2w=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9952\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmtD8=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps616\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cc10619-af16-4fe1-a8c0-1b9e9d6596e3"
+ "417a703e-1bcc-4a8a-aa96-08a93f0b2eee"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2332"
+ "2333"
]
},
"ResponseHeaders": {
@@ -735,7 +735,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGVmZmEwMmEtNWY0My00NDgzLWI5YzYtMWE3YWM5ODBiNDEy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGExMGFiMmMtNzVlNC00NWI0LWExZTItZjhkYzIwYTU5MmZl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -744,13 +744,13 @@
"4991"
],
"x-ms-request-id": [
- "c7a370f8-f34e-419b-899c-ed194d3f881c"
+ "c001528c-ef3b-4219-b452-67197f70b458"
],
"x-ms-correlation-request-id": [
- "c7a370f8-f34e-419b-899c-ed194d3f881c"
+ "c001528c-ef3b-4219-b452-67197f70b458"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195810Z:c7a370f8-f34e-419b-899c-ed194d3f881c"
+ "WESTUS2:20200122T230552Z:c001528c-ef3b-4219-b452-67197f70b458"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -759,10 +759,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:09 GMT"
+ "Wed, 22 Jan 2020 23:05:52 GMT"
],
"Content-Length": [
- "4810"
+ "4813"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -771,32 +771,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/2w=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:57:47 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtD8=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:25 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju/+w=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmtQc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4580d8c-83b4-49fb-be38-b5a98080e55b"
+ "8a8063e2-1ac5-42da-9f38-3e8dcf3e70b1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1743"
+ "1745"
]
},
"ResponseHeaders": {
@@ -807,22 +807,22 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWM1YzRmOGMtYjZmOS00NDA4LWIwMzAtOTgyN2Y2ZGU0ZjNk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "4990"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjcxOWU1M2UtOWQ3NS00OTljLTkzMDYtMTYzYTg4YWU0MGMx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "4990"
+ ],
"x-ms-request-id": [
- "ec127a4c-0dad-4b58-8dd8-6d307c948d82"
+ "086f2361-da27-4d9b-af8e-c3b82cd36170"
],
"x-ms-correlation-request-id": [
- "ec127a4c-0dad-4b58-8dd8-6d307c948d82"
+ "086f2361-da27-4d9b-af8e-c3b82cd36170"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195843Z:ec127a4c-0dad-4b58-8dd8-6d307c948d82"
+ "WESTUS2:20200122T230625Z:086f2361-da27-4d9b-af8e-c3b82cd36170"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -831,10 +831,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:43 GMT"
+ "Wed, 22 Jan 2020 23:06:25 GMT"
],
"Content-Length": [
- "4262"
+ "4266"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -843,32 +843,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/+w=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:19 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtQc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:05:58 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAjvAJs=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmtcs=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50a5967c-54dd-485d-a24e-b57eb1a7d665"
+ "03583b9d-1302-45d1-8652-ec4f6eb816f4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1937"
+ "1939"
]
},
"ResponseHeaders": {
@@ -879,7 +879,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjE3NGUyOWQtYTEyNS00ODBjLTk2N2MtYTE2ZWFlNGYwOTc2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODU0NDBmOWItYTQyYS00M2RhLThhNmUtMGU0ZTMyMjFlNzNh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -888,13 +888,13 @@
"4989"
],
"x-ms-request-id": [
- "26152edc-0ce9-43c5-99f0-96f5e76404b3"
+ "a8de236e-d559-40af-a5f9-b9b8c63697f5"
],
"x-ms-correlation-request-id": [
- "26152edc-0ce9-43c5-99f0-96f5e76404b3"
+ "a8de236e-d559-40af-a5f9-b9b8c63697f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195919Z:26152edc-0ce9-43c5-99f0-96f5e76404b3"
+ "WESTUS2:20200122T230700Z:a8de236e-d559-40af-a5f9-b9b8c63697f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -903,10 +903,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:18 GMT"
+ "Wed, 22 Jan 2020 23:07:00 GMT"
],
"Content-Length": [
- "4350"
+ "4354"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -915,32 +915,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAJs=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:58:53 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtcs=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:06:32 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAjvAUo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmtxI=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72533aac-f7be-498e-a781-687e7667662e"
+ "9f552a14-575a-4348-acc4-0bc11492f560"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1938"
+ "1940"
]
},
"ResponseHeaders": {
@@ -951,7 +951,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzk2MGJmNTUtMGRlZC00MTQyLWFlNmQtMDc3ZGY5MmFlY2U4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGJkN2UyOGItYzM5OS00OTk0LTg4M2EtZmYyNTk5YmZiOTdj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -960,13 +960,13 @@
"4988"
],
"x-ms-request-id": [
- "0f5d621c-e80b-4a8f-a3ae-8d91cbbe65b3"
+ "997e4cc7-2651-46c5-9b86-f34233feace6"
],
"x-ms-correlation-request-id": [
- "0f5d621c-e80b-4a8f-a3ae-8d91cbbe65b3"
+ "997e4cc7-2651-46c5-9b86-f34233feace6"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195953Z:0f5d621c-e80b-4a8f-a3ae-8d91cbbe65b3"
+ "WESTUS2:20200122T230734Z:997e4cc7-2651-46c5-9b86-f34233feace6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -975,10 +975,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:53 GMT"
+ "Wed, 22 Jan 2020 23:07:34 GMT"
],
"Content-Length": [
- "4370"
+ "4374"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -987,32 +987,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAUo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:59:28 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtxI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:06 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAjvAfU=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmuDA=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce44e092-1f94-430a-b71b-10f0cef3af0a"
+ "1eb5ce02-63d0-4aa8-ad6b-f55c8936a01b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1743"
+ "1745"
]
},
"ResponseHeaders": {
@@ -1023,7 +1023,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2M5OTNjOGYtODhjOC00ZDc1LWFkYjQtNzIxZTk4Mjg5OTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTYxMDczZWYtNjgxZC00NDEwLThmY2UtM2I1NDUzZmJiOTgy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1032,13 +1032,13 @@
"4987"
],
"x-ms-request-id": [
- "92007a0b-2e92-4c77-be77-f466fad39a12"
+ "7c0bc20e-e1df-4169-b39c-2dbcdb2547e4"
],
"x-ms-correlation-request-id": [
- "92007a0b-2e92-4c77-be77-f466fad39a12"
+ "7c0bc20e-e1df-4169-b39c-2dbcdb2547e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200032Z:92007a0b-2e92-4c77-be77-f466fad39a12"
+ "WESTUS2:20200122T230809Z:7c0bc20e-e1df-4169-b39c-2dbcdb2547e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1047,10 +1047,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:32 GMT"
+ "Wed, 22 Jan 2020 23:08:08 GMT"
],
"Content-Length": [
- "4262"
+ "4266"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1059,25 +1059,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAfU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:01 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuDA=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:07:40 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAjvA2A=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmuOs=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4901f197-9f27-4a04-856c-0488af030129"
+ "ff6fd8c2-1735-4351-b3c2-22476243571c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -1095,7 +1095,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODg5OWMyNGItYTYxYy00YzAzLWE3MjEtODQ5NmNhYWEyYzhl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTgzOTA5MDYtZTNiNi00YmRjLWI4MzgtMDM3MWYzZjg5ODNh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1104,13 +1104,13 @@
"4986"
],
"x-ms-request-id": [
- "6756bf89-a1a2-4f50-a42e-b8f8d2c3ec15"
+ "06ff6ecd-e591-4702-87da-7d0c5871c54c"
],
"x-ms-correlation-request-id": [
- "6756bf89-a1a2-4f50-a42e-b8f8d2c3ec15"
+ "06ff6ecd-e591-4702-87da-7d0c5871c54c"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200113Z:6756bf89-a1a2-4f50-a42e-b8f8d2c3ec15"
+ "WESTUS2:20200122T230842Z:06ff6ecd-e591-4702-87da-7d0c5871c54c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1119,10 +1119,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:12 GMT"
+ "Wed, 22 Jan 2020 23:08:42 GMT"
],
"Content-Length": [
- "3944"
+ "3946"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1131,19 +1131,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvA2A=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"secondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"secondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZkC1uivEukc0HI6rhHhkfc8ll8t49n9KwZiBgWULo2s=\",\r\n \"secondaryKey\": \"UnAjJp6pHPKYO5meYU3Ll88WlwElldreXjJ512iESQ4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2kuiL70ECp4hBgctwznE1I024C9x+C8IKkfpmfooRM4=\",\r\n \"secondaryKey\": \"pbVhF+nxkzQooLTksTzqVEF12ijU6LjKRdd+VU+ZnjI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Rm2a1d4+eS8gNK8bW4i63XqYkQlepmLaJWSeVsE4O8o=\",\r\n \"secondaryKey\": \"rKgNCQ2LJeNnlDCarXYXA5dJ/mCs3AGoL2viygeiVsQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7a6acf7b-c876-4a40-86a6-6c22043cf9aa-iothub\",\r\n \"PrimaryKey\": \"eADr+GOCXDnnJgTbBpM+enKD2dtJ0c33FuldT4608KM=\",\r\n \"SecondaryKey\": \"O2+7Cd9FWoBrDdyhH8eNOeJ5Dv1ZJwD8C7j8P+fqjsM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-529e5f65-cdc3-4668-ab8d-30de85eec946-iothub\",\r\n \"PrimaryKey\": \"sb5TAsAzjc3W/Ci3+I22RQas320KhTg0Elq8yvNZXfo=\",\r\n \"SecondaryKey\": \"/rtEZyJ637sBZ8V+XGXayp/fKgE7cK44KoY8YZ/9SXY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"63VwBQb/BZQ+2dvomFFhKFmxTrHkh/5UE7hBZPoWApQ=\",\r\n \"SecondaryKey\": \"0c/C1F714AY6miovHJHrINI4S420l3XLxwtZjJW40xo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"D+LC5KbvUKfPQxwkihwaAoEsowPZPWUCQdI0FbSW6y8=\",\r\n \"SecondaryKey\": \"geGHDeE9E+PJ5VgXvHGgpziUOb1ws41Oj29Qqd5Ta7k=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 20:00:43 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuOs=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"secondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"secondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"hMhzMrn6FBC7Alw6PrgNvntCJO3Ure1zfQGGsn0sIPM=\",\r\n \"secondaryKey\": \"gCAwvQ5h3XVqZ9CRzYGXV4w2OmUyyYMGG78zGizN8Go=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"trB9+QErhCLkurBYqJ+HSw7zNRYLRvUdPxazB2Afcm8=\",\r\n \"secondaryKey\": \"cncPhwRA5cLWs3dPN/5Te7us9fLGGnlg0v7d9jc274s=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mWQP6Mxx3ruPwJsCS3BM44BW7qSjVU8/9/R3zg9q6FA=\",\r\n \"secondaryKey\": \"t/GExao3zwn3MRMR7PKafRAgAgg2waHOQ3456gZWQe8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-e29a4b55-bdf8-4a1e-b096-e9ed0d4b3a77-iothub\",\r\n \"PrimaryKey\": \"cuwZVdtH4nPSY2UAi96AYrgdQnrC8hvhgqoxS13TudM=\",\r\n \"SecondaryKey\": \"ToYfOGGmip7+mNBZYSmhJQgVxN2OPiaCI/U3/Nqq8AQ=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-32d154b0-0092-40f9-bcd1-4962a3b8dfbc-iothub\",\r\n \"PrimaryKey\": \"cBDhg1XIm1aZ6bGUlpLzDFTaQJCIL1pot8AU/rJafe4=\",\r\n \"SecondaryKey\": \"+S04fTe4bJoXrtP2h6lPTEz73HThNksY80Jp7okLJj4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"S2TKwab0hS/Aes9B2Zti74wp4FwmwbW3xwIG7iLgNeE=\",\r\n \"SecondaryKey\": \"WFuiCho75vVTfOVPHDfh45K28YEyiN3/IDHcs21b0Wo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"lFa8F2ulEv/YGKiPPb/vvFgz1PTq7Fx8lR8J7JvqtSM=\",\r\n \"SecondaryKey\": \"2W9B9y1fIcpl9ctUGcVjnYTPLqMZ4GkF65H5nrzOd+g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 23:08:15 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjZjNzk0NGMtZDU3Zi00YjQ1LTliNGYtNTRiNTA2ZGMzMTAy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpaak56azBOR010WkRVM1ppMDBZalExTFRsaU5HWXROVFJpTlRBMlpHTXpNVEF5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZWNjMzQtZmZjNy00MDM0LTg0MzMtNjdmMTg0YzI3ZWEx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRka1pXTmpNelF0Wm1aak55MDBNRE0wTFRnME16TXROamRtTVRnMFl6STNaV0V4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1154,20 +1154,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
"x-ms-request-id": [
- "f0e38a77-61d4-4b6f-8033-8f51c2582d42"
+ "f465979b-00cd-41a0-ab00-1e6467f80e64"
],
"x-ms-correlation-request-id": [
- "f0e38a77-61d4-4b6f-8033-8f51c2582d42"
+ "f465979b-00cd-41a0-ab00-1e6467f80e64"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195049Z:f0e38a77-61d4-4b6f-8033-8f51c2582d42"
+ "WESTUS2:20200122T225821Z:f465979b-00cd-41a0-ab00-1e6467f80e64"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1176,7 +1176,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:50:48 GMT"
+ "Wed, 22 Jan 2020 22:58:21 GMT"
],
"Content-Length": [
"20"
@@ -1192,15 +1192,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjZjNzk0NGMtZDU3Zi00YjQ1LTliNGYtNTRiNTA2ZGMzMTAy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpaak56azBOR010WkRVM1ppMDBZalExTFRsaU5HWXROVFJpTlRBMlpHTXpNVEF5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZWNjMzQtZmZjNy00MDM0LTg0MzMtNjdmMTg0YzI3ZWEx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRka1pXTmpNelF0Wm1aak55MDBNRE0wTFRnME16TXROamRtTVRnMFl6STNaV0V4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1211,20 +1211,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
"x-ms-request-id": [
- "23a3f16a-9b1e-448c-9a55-0e9ee8b0c975"
+ "c83c0c3f-6360-48b8-b723-a2935aca9cbb"
],
"x-ms-correlation-request-id": [
- "23a3f16a-9b1e-448c-9a55-0e9ee8b0c975"
+ "c83c0c3f-6360-48b8-b723-a2935aca9cbb"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195119Z:23a3f16a-9b1e-448c-9a55-0e9ee8b0c975"
+ "WESTUS2:20200122T225851Z:c83c0c3f-6360-48b8-b723-a2935aca9cbb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1233,7 +1233,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:51:18 GMT"
+ "Wed, 22 Jan 2020 22:58:51 GMT"
],
"Content-Length": [
"20"
@@ -1249,15 +1249,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjZjNzk0NGMtZDU3Zi00YjQ1LTliNGYtNTRiNTA2ZGMzMTAy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpaak56azBOR010WkRVM1ppMDBZalExTFRsaU5HWXROVFJpTlRBMlpHTXpNVEF5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZWNjMzQtZmZjNy00MDM0LTg0MzMtNjdmMTg0YzI3ZWEx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRka1pXTmpNelF0Wm1aak55MDBNRE0wTFRnME16TXROamRtTVRnMFl6STNaV0V4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1272,16 +1272,73 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "3d69e195-3350-44c0-ad80-a1e3c949409f"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d69e195-3350-44c0-ad80-a1e3c949409f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200122T225922Z:3d69e195-3350-44c0-ad80-a1e3c949409f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:59:22 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZWNjMzQtZmZjNy00MDM0LTg0MzMtNjdmMTg0YzI3ZWEx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRka1pXTmpNelF0Wm1aak55MDBNRE0wTFRnME16TXROamRtTVRnMFl6STNaV0V4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "4112d5c0-a1b8-45eb-a4bb-61a7fa2a5826"
+ "9964a104-e93a-4d81-9e68-0c0c4cdc3e05"
],
"x-ms-correlation-request-id": [
- "4112d5c0-a1b8-45eb-a4bb-61a7fa2a5826"
+ "9964a104-e93a-4d81-9e68-0c0c4cdc3e05"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195149Z:4112d5c0-a1b8-45eb-a4bb-61a7fa2a5826"
+ "WESTUS2:20200122T225952Z:9964a104-e93a-4d81-9e68-0c0c4cdc3e05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1290,7 +1347,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:51:48 GMT"
+ "Wed, 22 Jan 2020 22:59:51 GMT"
],
"Content-Length": [
"22"
@@ -1306,15 +1363,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1329,16 +1386,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-request-id": [
- "ca58451b-f407-4519-9d0a-49a43977273a"
+ "2917aeeb-45f9-4a47-9d39-d993d1306d46"
],
"x-ms-correlation-request-id": [
- "ca58451b-f407-4519-9d0a-49a43977273a"
+ "2917aeeb-45f9-4a47-9d39-d993d1306d46"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195149Z:ca58451b-f407-4519-9d0a-49a43977273a"
+ "WESTUS2:20200122T225953Z:2917aeeb-45f9-4a47-9d39-d993d1306d46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1347,10 +1404,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:51:49 GMT"
+ "Wed, 22 Jan 2020 22:59:52 GMT"
],
"Content-Length": [
- "1470"
+ "1472"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1359,25 +1416,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+Rw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmrdg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4907c65-fb24-4c89-afc0-1de8990aa695"
+ "c05082cd-56f0-4f42-a31f-21f1c5c3bbbc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1392,16 +1449,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-request-id": [
- "5481cb81-9314-44e0-860d-6e9f8a357167"
+ "541c817b-0225-483f-8a26-c10e0391bd24"
],
"x-ms-correlation-request-id": [
- "5481cb81-9314-44e0-860d-6e9f8a357167"
+ "541c817b-0225-483f-8a26-c10e0391bd24"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195150Z:5481cb81-9314-44e0-860d-6e9f8a357167"
+ "WESTUS2:20200122T225953Z:541c817b-0225-483f-8a26-c10e0391bd24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1410,10 +1467,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:51:49 GMT"
+ "Wed, 22 Jan 2020 22:59:52 GMT"
],
"Content-Length": [
- "1470"
+ "1472"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1422,25 +1479,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+Rw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmrdg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96c5f51a-7685-4bce-a388-bdc49d3de4a0"
+ "705a1c1e-dcb5-4319-9aa1-c960d4df6875"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1455,16 +1512,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-request-id": [
- "e33db9e5-2c8c-438d-96a6-f2f6bf47d4ef"
+ "737392be-af47-4f12-8b69-4751eaa16e1c"
],
"x-ms-correlation-request-id": [
- "e33db9e5-2c8c-438d-96a6-f2f6bf47d4ef"
+ "737392be-af47-4f12-8b69-4751eaa16e1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195314Z:e33db9e5-2c8c-438d-96a6-f2f6bf47d4ef"
+ "WESTUS2:20200122T230117Z:737392be-af47-4f12-8b69-4751eaa16e1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1473,10 +1530,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:14 GMT"
+ "Wed, 22 Jan 2020 23:01:16 GMT"
],
"Content-Length": [
- "1470"
+ "1472"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1485,25 +1542,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+Rw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmrdg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6ae7b42-780f-49de-bfc7-67f1c14798ad"
+ "d78ecfd8-893b-4c36-b08f-77c90f66869e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1518,16 +1575,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-request-id": [
- "967876ea-38b0-45bd-8df1-081a992e5b60"
+ "adefe04e-c6f9-49e2-81e1-98e6cd1ad152"
],
"x-ms-correlation-request-id": [
- "967876ea-38b0-45bd-8df1-081a992e5b60"
+ "adefe04e-c6f9-49e2-81e1-98e6cd1ad152"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195314Z:967876ea-38b0-45bd-8df1-081a992e5b60"
+ "WESTUS2:20200122T230117Z:adefe04e-c6f9-49e2-81e1-98e6cd1ad152"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1536,10 +1593,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:14 GMT"
+ "Wed, 22 Jan 2020 23:01:16 GMT"
],
"Content-Length": [
- "1470"
+ "1472"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1548,19 +1605,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+Rw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmrdg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1575,16 +1632,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11990"
],
"x-ms-request-id": [
- "dcccb17f-586f-46fd-9278-5a04aa4614d0"
+ "e2c32216-579a-4bc8-bfbb-25e9c4c73f22"
],
"x-ms-correlation-request-id": [
- "dcccb17f-586f-46fd-9278-5a04aa4614d0"
+ "e2c32216-579a-4bc8-bfbb-25e9c4c73f22"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195347Z:dcccb17f-586f-46fd-9278-5a04aa4614d0"
+ "WESTUS2:20200122T230150Z:e2c32216-579a-4bc8-bfbb-25e9c4c73f22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1593,10 +1650,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:47 GMT"
+ "Wed, 22 Jan 2020 23:01:50 GMT"
],
"Content-Length": [
- "1753"
+ "1757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1605,25 +1662,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+2M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsNQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd144f86-c49b-48b6-aee2-2aed5b00cb0f"
+ "6a7f916b-a808-4b29-89bb-277b494b4165"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1638,16 +1695,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11989"
],
"x-ms-request-id": [
- "a9dcbe41-6a36-415c-9de8-cee5434fd357"
+ "b34ca50d-fbc3-4ff5-aa8c-9858dc8f76fa"
],
"x-ms-correlation-request-id": [
- "a9dcbe41-6a36-415c-9de8-cee5434fd357"
+ "b34ca50d-fbc3-4ff5-aa8c-9858dc8f76fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195348Z:a9dcbe41-6a36-415c-9de8-cee5434fd357"
+ "WESTUS2:20200122T230150Z:b34ca50d-fbc3-4ff5-aa8c-9858dc8f76fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1656,10 +1713,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:48 GMT"
+ "Wed, 22 Jan 2020 23:01:50 GMT"
],
"Content-Length": [
- "1753"
+ "1757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1668,25 +1725,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+2M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsNQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e33ee2a-a66c-42f8-a0e3-4d7ebb524c98"
+ "5f33155f-741c-4552-86e7-25fc0f13889d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1701,16 +1758,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11988"
],
"x-ms-request-id": [
- "cd2946f3-c850-46d3-b6f9-258a7c4f6319"
+ "5f9a231f-581a-40d0-acd4-636c3bb6a571"
],
"x-ms-correlation-request-id": [
- "cd2946f3-c850-46d3-b6f9-258a7c4f6319"
+ "5f9a231f-581a-40d0-acd4-636c3bb6a571"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195348Z:cd2946f3-c850-46d3-b6f9-258a7c4f6319"
+ "WESTUS2:20200122T230151Z:5f9a231f-581a-40d0-acd4-636c3bb6a571"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1719,10 +1776,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:48 GMT"
+ "Wed, 22 Jan 2020 23:01:51 GMT"
],
"Content-Length": [
- "1753"
+ "1757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1731,19 +1788,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+2M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsNQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1758,16 +1815,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11986"
],
"x-ms-request-id": [
- "162beb5e-9794-4963-b5db-23953e69a4d4"
+ "291b490a-470a-4bb8-b93f-7e10fcdf774c"
],
"x-ms-correlation-request-id": [
- "162beb5e-9794-4963-b5db-23953e69a4d4"
+ "291b490a-470a-4bb8-b93f-7e10fcdf774c"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195422Z:162beb5e-9794-4963-b5db-23953e69a4d4"
+ "WESTUS2:20200122T230224Z:291b490a-470a-4bb8-b93f-7e10fcdf774c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1776,10 +1833,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:21 GMT"
+ "Wed, 22 Jan 2020 23:02:24 GMT"
],
"Content-Length": [
- "2217"
+ "2221"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1788,25 +1845,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+/o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsTs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b9c3bc2-6e7b-47d3-b7bf-acf2960a8eb4"
+ "20b9e84c-dcb6-4689-9abc-3c7382d07c5c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1821,16 +1878,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11985"
],
"x-ms-request-id": [
- "9e9627b7-8b73-40dd-932f-36f743d01efe"
+ "0589c6c2-db8c-49ac-9296-73f5899c6314"
],
"x-ms-correlation-request-id": [
- "9e9627b7-8b73-40dd-932f-36f743d01efe"
+ "0589c6c2-db8c-49ac-9296-73f5899c6314"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195423Z:9e9627b7-8b73-40dd-932f-36f743d01efe"
+ "WESTUS2:20200122T230224Z:0589c6c2-db8c-49ac-9296-73f5899c6314"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1839,10 +1896,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:22 GMT"
+ "Wed, 22 Jan 2020 23:02:24 GMT"
],
"Content-Length": [
- "2217"
+ "2221"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1851,25 +1908,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+/o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsTs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a496da26-62cd-40f0-9388-1c520a15f49f"
+ "91d729f6-f27a-41cf-80ee-bcf2889e9ae9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1880,20 +1937,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
"x-ms-request-id": [
- "dfa21bcd-c0b2-46cd-adf5-dbdcdd3c672f"
+ "96ad69d0-ec26-447c-aa32-621594add8b3"
],
"x-ms-correlation-request-id": [
- "dfa21bcd-c0b2-46cd-adf5-dbdcdd3c672f"
+ "96ad69d0-ec26-447c-aa32-621594add8b3"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195423Z:dfa21bcd-c0b2-46cd-adf5-dbdcdd3c672f"
+ "WESTUS2:20200122T230225Z:96ad69d0-ec26-447c-aa32-621594add8b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1902,10 +1959,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:22 GMT"
+ "Wed, 22 Jan 2020 23:02:24 GMT"
],
"Content-Length": [
- "2217"
+ "2221"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1914,19 +1971,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju+/o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsTs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1941,16 +1998,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11982"
],
"x-ms-request-id": [
- "6e84e043-e93b-4e7e-a505-697a04f36848"
+ "5cb9e81a-3e20-4e0d-a81d-74162ee9b15e"
],
"x-ms-correlation-request-id": [
- "6e84e043-e93b-4e7e-a505-697a04f36848"
+ "5cb9e81a-3e20-4e0d-a81d-74162ee9b15e"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195456Z:6e84e043-e93b-4e7e-a505-697a04f36848"
+ "WESTUS2:20200122T230258Z:5cb9e81a-3e20-4e0d-a81d-74162ee9b15e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1959,10 +2016,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:56 GMT"
+ "Wed, 22 Jan 2020 23:02:57 GMT"
],
"Content-Length": [
- "2682"
+ "2685"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1971,25 +2028,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a294573-e2a8-4f59-8d4c-88a4002d3694"
+ "55d62b53-554b-47ad-8c08-f211a6a09df3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2004,16 +2061,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11981"
],
"x-ms-request-id": [
- "98205638-9a68-452d-93a7-f88ea07259df"
+ "e1db2b5d-df42-4c14-b3d6-e0eade847df4"
],
"x-ms-correlation-request-id": [
- "98205638-9a68-452d-93a7-f88ea07259df"
+ "e1db2b5d-df42-4c14-b3d6-e0eade847df4"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195457Z:98205638-9a68-452d-93a7-f88ea07259df"
+ "WESTUS2:20200122T230258Z:e1db2b5d-df42-4c14-b3d6-e0eade847df4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2022,10 +2079,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:56 GMT"
+ "Wed, 22 Jan 2020 23:02:58 GMT"
],
"Content-Length": [
- "2682"
+ "2685"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2034,25 +2091,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7594b417-0633-4e97-ae13-8233bd69103a"
+ "c3a3bc8b-cd1b-4ae7-bf0e-0b9e0efb7b1c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2067,16 +2124,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11980"
],
"x-ms-request-id": [
- "ea226cb0-c193-44cd-96ef-75d3e36e62bd"
+ "6560bae6-b9bc-4a34-877c-5b0cd9b08955"
],
"x-ms-correlation-request-id": [
- "ea226cb0-c193-44cd-96ef-75d3e36e62bd"
+ "6560bae6-b9bc-4a34-877c-5b0cd9b08955"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195457Z:ea226cb0-c193-44cd-96ef-75d3e36e62bd"
+ "WESTUS2:20200122T230259Z:6560bae6-b9bc-4a34-877c-5b0cd9b08955"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2085,10 +2142,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:57 GMT"
+ "Wed, 22 Jan 2020 23:02:58 GMT"
],
"Content-Length": [
- "2682"
+ "2685"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2097,25 +2154,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0bf2f0da-3dd5-4ee7-9c2c-dda612762f30"
+ "1f5e2a85-9e0a-4069-b3ab-dd3aa7374777"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2130,16 +2187,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11979"
],
"x-ms-request-id": [
- "a1176470-0df9-4b98-b20f-9eae156557af"
+ "ee2137bc-93e6-45ad-b101-ee4716c530bc"
],
"x-ms-correlation-request-id": [
- "a1176470-0df9-4b98-b20f-9eae156557af"
+ "ee2137bc-93e6-45ad-b101-ee4716c530bc"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195458Z:a1176470-0df9-4b98-b20f-9eae156557af"
+ "WESTUS2:20200122T230259Z:ee2137bc-93e6-45ad-b101-ee4716c530bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2148,10 +2205,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:58 GMT"
+ "Wed, 22 Jan 2020 23:02:58 GMT"
],
"Content-Length": [
- "2682"
+ "2685"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2160,25 +2217,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0e71251-42be-4d3e-9527-97ff51a73d4b"
+ "f9914556-324b-4c85-b343-b616110e6920"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2193,16 +2250,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11978"
],
"x-ms-request-id": [
- "6d1d94c9-51da-4a84-846d-bda343122f8d"
+ "4f599c1a-f82d-4681-97fd-b9f52d744194"
],
"x-ms-correlation-request-id": [
- "6d1d94c9-51da-4a84-846d-bda343122f8d"
+ "4f599c1a-f82d-4681-97fd-b9f52d744194"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195458Z:6d1d94c9-51da-4a84-846d-bda343122f8d"
+ "WESTUS2:20200122T230300Z:4f599c1a-f82d-4681-97fd-b9f52d744194"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2211,10 +2268,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:58 GMT"
+ "Wed, 22 Jan 2020 23:02:59 GMT"
],
"Content-Length": [
- "2682"
+ "2685"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2223,19 +2280,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/Jw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmscw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2250,16 +2307,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11975"
],
"x-ms-request-id": [
- "b5b26666-5217-4c29-9260-21fc31fdb949"
+ "3f67fc6f-dd58-4c9b-bab5-e423d7f0d374"
],
"x-ms-correlation-request-id": [
- "b5b26666-5217-4c29-9260-21fc31fdb949"
+ "3f67fc6f-dd58-4c9b-bab5-e423d7f0d374"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195603Z:b5b26666-5217-4c29-9260-21fc31fdb949"
+ "WESTUS2:20200122T230404Z:3f67fc6f-dd58-4c9b-bab5-e423d7f0d374"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2268,10 +2325,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:03 GMT"
+ "Wed, 22 Jan 2020 23:04:03 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2280,25 +2337,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d18db5ef-2c27-448e-802a-8e57fd6e9b1b"
+ "f5d6cb96-b024-4906-9be6-e3dc0fe55436"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2313,16 +2370,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11974"
],
"x-ms-request-id": [
- "a8d42931-fb1f-4b66-9a1b-520c9b1fb357"
+ "e94b60e9-8203-4436-9463-b95889025c8f"
],
"x-ms-correlation-request-id": [
- "a8d42931-fb1f-4b66-9a1b-520c9b1fb357"
+ "e94b60e9-8203-4436-9463-b95889025c8f"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195604Z:a8d42931-fb1f-4b66-9a1b-520c9b1fb357"
+ "WESTUS2:20200122T230404Z:e94b60e9-8203-4436-9463-b95889025c8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2331,10 +2388,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:04 GMT"
+ "Wed, 22 Jan 2020 23:04:03 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2343,25 +2400,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab00f591-8784-4db3-9ae0-9c38d219475e"
+ "a7af024d-a358-429b-9bf8-b5d2ef09d514"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2376,16 +2433,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11973"
],
"x-ms-request-id": [
- "f10206aa-6949-445c-9f96-a0bda8848e24"
+ "ae66add6-a457-47bb-9bbd-e315699bd8b7"
],
"x-ms-correlation-request-id": [
- "f10206aa-6949-445c-9f96-a0bda8848e24"
+ "ae66add6-a457-47bb-9bbd-e315699bd8b7"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195605Z:f10206aa-6949-445c-9f96-a0bda8848e24"
+ "WESTUS2:20200122T230405Z:ae66add6-a457-47bb-9bbd-e315699bd8b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2394,10 +2451,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:04 GMT"
+ "Wed, 22 Jan 2020 23:04:04 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2406,25 +2463,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7d8cc4a-b55f-4bd2-93cf-986709cd0381"
+ "68cd3fd7-8144-4ee4-9184-992fc6ec703a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2439,16 +2496,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11972"
],
"x-ms-request-id": [
- "a4bbbdef-b42b-4c50-a619-9536c58da432"
+ "4c20bccb-d00b-4900-b346-1c562476fa72"
],
"x-ms-correlation-request-id": [
- "a4bbbdef-b42b-4c50-a619-9536c58da432"
+ "4c20bccb-d00b-4900-b346-1c562476fa72"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195605Z:a4bbbdef-b42b-4c50-a619-9536c58da432"
+ "WESTUS2:20200122T230405Z:4c20bccb-d00b-4900-b346-1c562476fa72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2457,10 +2514,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:05 GMT"
+ "Wed, 22 Jan 2020 23:04:04 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2469,25 +2526,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1815524-730b-4945-9a3e-360c490e713d"
+ "d6e35b41-88c8-4ab0-a9c5-3c9a4e7c056f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2502,16 +2559,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11971"
],
"x-ms-request-id": [
- "aa3544fc-577c-457f-904c-3fc9fe39bfd1"
+ "08870fed-c9a1-42d6-baae-688d27a9deca"
],
"x-ms-correlation-request-id": [
- "aa3544fc-577c-457f-904c-3fc9fe39bfd1"
+ "08870fed-c9a1-42d6-baae-688d27a9deca"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195606Z:aa3544fc-577c-457f-904c-3fc9fe39bfd1"
+ "WESTUS2:20200122T230406Z:08870fed-c9a1-42d6-baae-688d27a9deca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2520,10 +2577,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:05 GMT"
+ "Wed, 22 Jan 2020 23:04:05 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2532,19 +2589,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/eo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps9522\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmssw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps8611\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2559,16 +2616,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11969"
],
"x-ms-request-id": [
- "5eaf716b-2844-47c7-9e62-3f1386d73960"
+ "a5f5c842-5d5b-4bd2-84d9-f20499377a0f"
],
"x-ms-correlation-request-id": [
- "5eaf716b-2844-47c7-9e62-3f1386d73960"
+ "a5f5c842-5d5b-4bd2-84d9-f20499377a0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195652Z:5eaf716b-2844-47c7-9e62-3f1386d73960"
+ "WESTUS2:20200122T230439Z:a5f5c842-5d5b-4bd2-84d9-f20499377a0f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2577,10 +2634,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:51 GMT"
+ "Wed, 22 Jan 2020 23:04:39 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2589,25 +2646,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/ow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsxE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae023dc0-0df2-42dc-aa93-029d2d58b261"
+ "4f8e25c2-476c-4f43-95f2-d3b354cb06e3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2622,16 +2679,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11968"
],
"x-ms-request-id": [
- "416a95fa-56bb-4d45-85d6-e535fb009dbc"
+ "7c3de79b-7540-404a-af87-88be452c2cce"
],
"x-ms-correlation-request-id": [
- "416a95fa-56bb-4d45-85d6-e535fb009dbc"
+ "7c3de79b-7540-404a-af87-88be452c2cce"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195653Z:416a95fa-56bb-4d45-85d6-e535fb009dbc"
+ "WESTUS2:20200122T230440Z:7c3de79b-7540-404a-af87-88be452c2cce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2640,10 +2697,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:52 GMT"
+ "Wed, 22 Jan 2020 23:04:39 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2652,25 +2709,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/ow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsxE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "057d74b8-14a1-4d40-a7e8-67749d8fbc27"
+ "370932b8-51b2-4bc0-9a43-b98b6981b2f5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2685,16 +2742,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11967"
],
"x-ms-request-id": [
- "83c46ca2-6428-4de1-8639-5aa261c74b00"
+ "800e84f7-9025-4d36-8c66-84dddf16df85"
],
"x-ms-correlation-request-id": [
- "83c46ca2-6428-4de1-8639-5aa261c74b00"
+ "800e84f7-9025-4d36-8c66-84dddf16df85"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195653Z:83c46ca2-6428-4de1-8639-5aa261c74b00"
+ "WESTUS2:20200122T230440Z:800e84f7-9025-4d36-8c66-84dddf16df85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2703,10 +2760,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:52 GMT"
+ "Wed, 22 Jan 2020 23:04:40 GMT"
],
"Content-Length": [
- "2759"
+ "2762"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2715,19 +2772,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/ow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmsxE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2742,16 +2799,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11965"
],
"x-ms-request-id": [
- "c62c425a-f728-4924-ab1a-8dbfb189dfa9"
+ "cfb05327-5eca-468d-ae41-9c56ad6a65ba"
],
"x-ms-correlation-request-id": [
- "c62c425a-f728-4924-ab1a-8dbfb189dfa9"
+ "cfb05327-5eca-468d-ae41-9c56ad6a65ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195731Z:c62c425a-f728-4924-ab1a-8dbfb189dfa9"
+ "WESTUS2:20200122T230513Z:cfb05327-5eca-468d-ae41-9c56ad6a65ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2760,10 +2817,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:57:30 GMT"
+ "Wed, 22 Jan 2020 23:05:13 GMT"
],
"Content-Length": [
- "2768"
+ "2770"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2772,25 +2829,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/wI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\",\r\n \"ps9952\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArms70=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\",\r\n \"ps616\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "baccc559-f1fc-447b-8f9d-66891e432841"
+ "ea84a9e4-eb0c-46e0-9756-737305bfdb8d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2805,16 +2862,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11964"
],
"x-ms-request-id": [
- "318c8836-9506-4f77-9804-766e087e5041"
+ "e2c287da-2fb3-414a-ac21-b08d5444f78a"
],
"x-ms-correlation-request-id": [
- "318c8836-9506-4f77-9804-766e087e5041"
+ "e2c287da-2fb3-414a-ac21-b08d5444f78a"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195731Z:318c8836-9506-4f77-9804-766e087e5041"
+ "WESTUS2:20200122T230514Z:e2c287da-2fb3-414a-ac21-b08d5444f78a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2823,10 +2880,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:57:31 GMT"
+ "Wed, 22 Jan 2020 23:05:13 GMT"
],
"Content-Length": [
- "2768"
+ "2770"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2835,25 +2892,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/wI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\",\r\n \"ps9952\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArms70=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\",\r\n \"ps616\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94806a72-297a-430a-b27d-6ef8f49a1101"
+ "6334041e-142e-4f71-8518-bdebcc7aa3d7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2868,16 +2925,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11963"
],
"x-ms-request-id": [
- "8d34c3e0-96ae-453f-8aab-eff90b124260"
+ "d87c3c2f-34f9-4928-bdc2-68027ca739b4"
],
"x-ms-correlation-request-id": [
- "8d34c3e0-96ae-453f-8aab-eff90b124260"
+ "d87c3c2f-34f9-4928-bdc2-68027ca739b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195732Z:8d34c3e0-96ae-453f-8aab-eff90b124260"
+ "WESTUS2:20200122T230514Z:d87c3c2f-34f9-4928-bdc2-68027ca739b4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2886,10 +2943,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:57:32 GMT"
+ "Wed, 22 Jan 2020 23:05:14 GMT"
],
"Content-Length": [
- "2768"
+ "2770"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2898,19 +2955,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/wI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps7283\",\r\n \"value\": \"ps8923\",\r\n \"endpointNames\": [\r\n \"ps8031\",\r\n \"ps9952\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArms70=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps4746\",\r\n \"value\": \"ps2122\",\r\n \"endpointNames\": [\r\n \"ps5270\",\r\n \"ps616\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2925,16 +2982,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11961"
],
"x-ms-request-id": [
- "d28978aa-2638-4507-a50c-46fba681364b"
+ "e3707c70-f2f0-4760-b18d-30a69f5f440e"
],
"x-ms-correlation-request-id": [
- "d28978aa-2638-4507-a50c-46fba681364b"
+ "e3707c70-f2f0-4760-b18d-30a69f5f440e"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195807Z:d28978aa-2638-4507-a50c-46fba681364b"
+ "WESTUS2:20200122T230548Z:e3707c70-f2f0-4760-b18d-30a69f5f440e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2943,10 +3000,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:06 GMT"
+ "Wed, 22 Jan 2020 23:05:48 GMT"
],
"Content-Length": [
- "2699"
+ "2702"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2955,25 +3012,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/2w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtD8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e1515b2-1e18-405b-89f6-12aa25a30b76"
+ "deff6cc6-6731-47fa-b588-1b6c68d7b5c9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2988,16 +3045,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11960"
],
"x-ms-request-id": [
- "92150af8-aa5d-4120-97ac-9b85916624c2"
+ "3660bdb8-cea9-4e2c-bfd7-2eec49a648c3"
],
"x-ms-correlation-request-id": [
- "92150af8-aa5d-4120-97ac-9b85916624c2"
+ "3660bdb8-cea9-4e2c-bfd7-2eec49a648c3"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195807Z:92150af8-aa5d-4120-97ac-9b85916624c2"
+ "WESTUS2:20200122T230549Z:3660bdb8-cea9-4e2c-bfd7-2eec49a648c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3006,10 +3063,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:06 GMT"
+ "Wed, 22 Jan 2020 23:05:48 GMT"
],
"Content-Length": [
- "2699"
+ "2702"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3018,19 +3075,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/2w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps8031\",\r\n \"id\": \"14611449-c99e-42f3-b60c-bf4c8e09f954\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtD8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps5270\",\r\n \"id\": \"0eb6cd35-fb15-4a44-96af-05b83d463379\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3045,16 +3102,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11958"
],
"x-ms-request-id": [
- "08e1fa91-eb13-4289-a20d-8500fc6dcf40"
+ "cc27e154-0420-4fa8-b0ee-796dcd49ce51"
],
"x-ms-correlation-request-id": [
- "08e1fa91-eb13-4289-a20d-8500fc6dcf40"
+ "cc27e154-0420-4fa8-b0ee-796dcd49ce51"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195841Z:08e1fa91-eb13-4289-a20d-8500fc6dcf40"
+ "WESTUS2:20200122T230623Z:cc27e154-0420-4fa8-b0ee-796dcd49ce51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3063,10 +3120,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:40 GMT"
+ "Wed, 22 Jan 2020 23:06:22 GMT"
],
"Content-Length": [
- "2234"
+ "2237"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3075,25 +3132,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtQc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a4c0504-fb14-4bac-98a4-6d99e94b7bf3"
+ "5b5fd37c-11f2-414c-997d-d4e4a08c7867"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3108,16 +3165,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11957"
],
"x-ms-request-id": [
- "f623f4d8-3f40-4f7d-b075-b53c6154b1b8"
+ "64231eed-b150-4709-8204-72ae807dab78"
],
"x-ms-correlation-request-id": [
- "f623f4d8-3f40-4f7d-b075-b53c6154b1b8"
+ "64231eed-b150-4709-8204-72ae807dab78"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195841Z:f623f4d8-3f40-4f7d-b075-b53c6154b1b8"
+ "WESTUS2:20200122T230623Z:64231eed-b150-4709-8204-72ae807dab78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3126,10 +3183,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:41 GMT"
+ "Wed, 22 Jan 2020 23:06:23 GMT"
],
"Content-Length": [
- "2234"
+ "2237"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3138,19 +3195,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAju/+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps9952\",\r\n \"id\": \"e1c92706-08ad-462e-a6e0-f33eb00e2e56\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtQc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps616\",\r\n \"id\": \"4c53f730-eb56-4832-99ea-8eb251e6b24e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3165,16 +3222,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11955"
],
"x-ms-request-id": [
- "3bfd9817-bd3d-4460-bd02-3d1853561920"
+ "486ad272-ea39-4cb4-acd2-09d7c56c2995"
],
"x-ms-correlation-request-id": [
- "3bfd9817-bd3d-4460-bd02-3d1853561920"
+ "486ad272-ea39-4cb4-acd2-09d7c56c2995"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195914Z:3bfd9817-bd3d-4460-bd02-3d1853561920"
+ "WESTUS2:20200122T230656Z:486ad272-ea39-4cb4-acd2-09d7c56c2995"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3183,10 +3240,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:13 GMT"
+ "Wed, 22 Jan 2020 23:06:56 GMT"
],
"Content-Length": [
- "1770"
+ "1774"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3195,25 +3252,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtcs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13126c10-14c1-4539-aba9-7d62cfd2b160"
+ "616daf31-6907-4383-a653-b2d0cdf274e6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3228,16 +3285,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11954"
],
"x-ms-request-id": [
- "9e22ce6c-5031-4871-ab92-2b738aebada5"
+ "a4326464-3fa4-4cec-981a-5a0394cb4700"
],
"x-ms-correlation-request-id": [
- "9e22ce6c-5031-4871-ab92-2b738aebada5"
+ "a4326464-3fa4-4cec-981a-5a0394cb4700"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195914Z:9e22ce6c-5031-4871-ab92-2b738aebada5"
+ "WESTUS2:20200122T230657Z:a4326464-3fa4-4cec-981a-5a0394cb4700"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3246,10 +3303,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:14 GMT"
+ "Wed, 22 Jan 2020 23:06:57 GMT"
],
"Content-Length": [
- "1770"
+ "1774"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3258,25 +3315,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtcs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a7a49851-2abe-4abb-b1a6-0d7f445fb038"
+ "be1b574c-e634-4729-b2dc-53117a43bf7e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3291,16 +3348,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11953"
],
"x-ms-request-id": [
- "02aa37d9-1292-4881-a428-684c379b26c7"
+ "d5d31dfb-0ee2-4651-97a1-20c43b129ace"
],
"x-ms-correlation-request-id": [
- "02aa37d9-1292-4881-a428-684c379b26c7"
+ "d5d31dfb-0ee2-4651-97a1-20c43b129ace"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195915Z:02aa37d9-1292-4881-a428-684c379b26c7"
+ "WESTUS2:20200122T230657Z:d5d31dfb-0ee2-4651-97a1-20c43b129ace"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3309,10 +3366,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:14 GMT"
+ "Wed, 22 Jan 2020 23:06:57 GMT"
],
"Content-Length": [
- "1770"
+ "1774"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3321,25 +3378,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtcs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12cd4c95-c140-430f-a94a-c31eb1195871"
+ "bf5de833-b5fa-4ed2-8c5a-3762ff8b719f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3354,16 +3411,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11952"
],
"x-ms-request-id": [
- "69abf0c5-a292-48c3-8789-f39077e91b80"
+ "a605d1a3-97e3-4f74-b308-31b4db76cbb4"
],
"x-ms-correlation-request-id": [
- "69abf0c5-a292-48c3-8789-f39077e91b80"
+ "a605d1a3-97e3-4f74-b308-31b4db76cbb4"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195915Z:69abf0c5-a292-48c3-8789-f39077e91b80"
+ "WESTUS2:20200122T230658Z:a605d1a3-97e3-4f74-b308-31b4db76cbb4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3372,10 +3429,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:15 GMT"
+ "Wed, 22 Jan 2020 23:06:58 GMT"
],
"Content-Length": [
- "1770"
+ "1774"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3384,19 +3441,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtcs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3411,16 +3468,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11950"
],
"x-ms-request-id": [
- "8ad28100-3a7a-43ae-9647-406ffc7d391f"
+ "df90f5de-1c2e-45b4-9aaf-d0cfaf254aca"
],
"x-ms-correlation-request-id": [
- "8ad28100-3a7a-43ae-9647-406ffc7d391f"
+ "df90f5de-1c2e-45b4-9aaf-d0cfaf254aca"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195949Z:8ad28100-3a7a-43ae-9647-406ffc7d391f"
+ "WESTUS2:20200122T230731Z:df90f5de-1c2e-45b4-9aaf-d0cfaf254aca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3429,10 +3486,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:48 GMT"
+ "Wed, 22 Jan 2020 23:07:30 GMT"
],
"Content-Length": [
- "1858"
+ "1862"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3441,25 +3498,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAUo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtxI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3dc81f8f-2c47-4855-92b9-8c3a8c088ece"
+ "40ee4f81-70e2-40e0-82fe-8878853fd53a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3474,16 +3531,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "11949"
],
"x-ms-request-id": [
- "31131dd8-f813-4870-9265-3b27dafe1c33"
+ "ed4238c2-034a-4f4a-af0c-4dd661f0909d"
],
"x-ms-correlation-request-id": [
- "31131dd8-f813-4870-9265-3b27dafe1c33"
+ "ed4238c2-034a-4f4a-af0c-4dd661f0909d"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195950Z:31131dd8-f813-4870-9265-3b27dafe1c33"
+ "WESTUS2:20200122T230731Z:ed4238c2-034a-4f4a-af0c-4dd661f0909d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3492,10 +3549,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:50 GMT"
+ "Wed, 22 Jan 2020 23:07:31 GMT"
],
"Content-Length": [
- "1858"
+ "1862"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3504,25 +3561,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAUo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtxI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01076d49-40fa-4d84-8422-59241c1fabbe"
+ "a66c816f-dfb6-4e60-99c2-53afb6ef1d20"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3537,16 +3594,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11948"
],
"x-ms-request-id": [
- "3f7940aa-c583-482f-88db-6512bc0609d6"
+ "5af524b9-c301-4531-b09a-528a8091b789"
],
"x-ms-correlation-request-id": [
- "3f7940aa-c583-482f-88db-6512bc0609d6"
+ "5af524b9-c301-4531-b09a-528a8091b789"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195950Z:3f7940aa-c583-482f-88db-6512bc0609d6"
+ "WESTUS2:20200122T230731Z:5af524b9-c301-4531-b09a-528a8091b789"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3555,10 +3612,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:50 GMT"
+ "Wed, 22 Jan 2020 23:07:31 GMT"
],
"Content-Length": [
- "1858"
+ "1862"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3567,25 +3624,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAUo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtxI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76b29e4b-b0a5-489a-8db7-5194e4e8508f"
+ "dd353941-d027-42d3-9725-db98df62d513"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3600,16 +3657,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11947"
],
"x-ms-request-id": [
- "485d6fc0-2519-4311-81d9-4e2647c83e62"
+ "5a114f1d-7085-41da-b549-73e8a6090827"
],
"x-ms-correlation-request-id": [
- "485d6fc0-2519-4311-81d9-4e2647c83e62"
+ "5a114f1d-7085-41da-b549-73e8a6090827"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195951Z:485d6fc0-2519-4311-81d9-4e2647c83e62"
+ "WESTUS2:20200122T230732Z:5a114f1d-7085-41da-b549-73e8a6090827"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3618,10 +3675,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:51 GMT"
+ "Wed, 22 Jan 2020 23:07:31 GMT"
],
"Content-Length": [
- "1858"
+ "1862"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3630,19 +3687,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAUo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmtxI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3653,20 +3710,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
"x-ms-request-id": [
- "1ca1872a-e5a5-4541-9a75-b27a8ad9e141"
+ "3761bf04-37de-4c88-9718-0bc56f9b25ff"
],
"x-ms-correlation-request-id": [
- "1ca1872a-e5a5-4541-9a75-b27a8ad9e141"
+ "3761bf04-37de-4c88-9718-0bc56f9b25ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200024Z:1ca1872a-e5a5-4541-9a75-b27a8ad9e141"
+ "WESTUS2:20200122T230805Z:3761bf04-37de-4c88-9718-0bc56f9b25ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3675,10 +3732,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:24 GMT"
+ "Wed, 22 Jan 2020 23:08:04 GMT"
],
"Content-Length": [
- "1878"
+ "1882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3687,25 +3744,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAfU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "475557af-8525-44f1-9257-afbed42029d4"
+ "a23dde94-5ae8-4a16-ba93-9288d1b372da"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3720,16 +3777,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
+ "11944"
],
"x-ms-request-id": [
- "32c370aa-62bd-4e1d-a4a1-89b41afbab7f"
+ "f835e1a6-c214-4f69-aa4b-1cfaa3f0d126"
],
"x-ms-correlation-request-id": [
- "32c370aa-62bd-4e1d-a4a1-89b41afbab7f"
+ "f835e1a6-c214-4f69-aa4b-1cfaa3f0d126"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200025Z:32c370aa-62bd-4e1d-a4a1-89b41afbab7f"
+ "WESTUS2:20200122T230805Z:f835e1a6-c214-4f69-aa4b-1cfaa3f0d126"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3738,10 +3795,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:25 GMT"
+ "Wed, 22 Jan 2020 23:08:05 GMT"
],
"Content-Length": [
- "1878"
+ "1882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3750,25 +3807,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAfU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5855bdf1-bed2-4230-a4b7-963f831d9ba0"
+ "917ec265-6196-4329-a2be-ed01f5d227ab"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3783,16 +3840,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11943"
],
"x-ms-request-id": [
- "877ee5fd-8093-4183-aac0-40a7fb0fe7dd"
+ "04dba525-5c15-430c-89a3-8de23315f8a4"
],
"x-ms-correlation-request-id": [
- "877ee5fd-8093-4183-aac0-40a7fb0fe7dd"
+ "04dba525-5c15-430c-89a3-8de23315f8a4"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200025Z:877ee5fd-8093-4183-aac0-40a7fb0fe7dd"
+ "WESTUS2:20200122T230806Z:04dba525-5c15-430c-89a3-8de23315f8a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3801,10 +3858,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:25 GMT"
+ "Wed, 22 Jan 2020 23:08:05 GMT"
],
"Content-Length": [
- "1878"
+ "1882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3813,25 +3870,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAfU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "920e8ffe-16e0-40e4-beed-b3df8205d568"
+ "070f793d-0301-413e-bcdb-d2d0212659f4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3842,20 +3899,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
- ],
"x-ms-request-id": [
- "3f38975f-995b-44ce-a05f-5d00667ed04b"
+ "e9ed573c-af52-4233-936c-52e9c51c9ae1"
],
"x-ms-correlation-request-id": [
- "3f38975f-995b-44ce-a05f-5d00667ed04b"
+ "e9ed573c-af52-4233-936c-52e9c51c9ae1"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200026Z:3f38975f-995b-44ce-a05f-5d00667ed04b"
+ "WESTUS2:20200122T230807Z:e9ed573c-af52-4233-936c-52e9c51c9ae1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3864,10 +3921,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:26 GMT"
+ "Wed, 22 Jan 2020 23:08:06 GMT"
],
"Content-Length": [
- "1878"
+ "1882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3876,19 +3933,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvAfU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3903,16 +3960,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11940"
],
"x-ms-request-id": [
- "a9d11c09-4bc0-421f-b4d1-cf4cb5d5ddc2"
+ "483d4fa3-89f6-4c27-baea-e4becad6f3a6"
],
"x-ms-correlation-request-id": [
- "a9d11c09-4bc0-421f-b4d1-cf4cb5d5ddc2"
+ "483d4fa3-89f6-4c27-baea-e4becad6f3a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200103Z:a9d11c09-4bc0-421f-b4d1-cf4cb5d5ddc2"
+ "WESTUS2:20200122T230840Z:483d4fa3-89f6-4c27-baea-e4becad6f3a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3921,10 +3978,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:02 GMT"
+ "Wed, 22 Jan 2020 23:08:39 GMT"
],
"Content-Length": [
- "1770"
+ "1774"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3933,25 +3990,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvA2A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuOs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab05d473-e14c-4afe-82e2-82a302d2f993"
+ "42ce8ae3-5c20-4638-89b1-920305f08a7f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3966,16 +4023,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11939"
],
"x-ms-request-id": [
- "7bbf7203-b2a9-4dcc-92a7-1163d1678e09"
+ "e52c6e0c-e461-4aa6-8879-a01a1ed71fba"
],
"x-ms-correlation-request-id": [
- "7bbf7203-b2a9-4dcc-92a7-1163d1678e09"
+ "e52c6e0c-e461-4aa6-8879-a01a1ed71fba"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200103Z:7bbf7203-b2a9-4dcc-92a7-1163d1678e09"
+ "WESTUS2:20200122T230840Z:e52c6e0c-e461-4aa6-8879-a01a1ed71fba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3984,10 +4041,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:03 GMT"
+ "Wed, 22 Jan 2020 23:08:40 GMT"
],
"Content-Length": [
- "1770"
+ "1774"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3996,19 +4053,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvA2A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net:5671/;SharedAccessKeyName=ps7323;SharedAccessKey=****;EntityPath=ps520\",\r\n \"name\": \"ps5445\",\r\n \"id\": \"8c6bd3f2-b9d8-4763-8f6b-3e8875dbb999\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps636\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuOs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net:5671/;SharedAccessKeyName=ps5036;SharedAccessKey=****;EntityPath=ps2744\",\r\n \"name\": \"ps2845\",\r\n \"id\": \"500328a1-6612-487e-a1af-9a3bc1815204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7381\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4023,16 +4080,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11937"
],
"x-ms-request-id": [
- "0e8d360a-4c82-43ea-b270-74a588dce88a"
+ "67fb1747-a4a2-41c2-af82-0f744875ee58"
],
"x-ms-correlation-request-id": [
- "0e8d360a-4c82-43ea-b270-74a588dce88a"
+ "67fb1747-a4a2-41c2-af82-0f744875ee58"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200143Z:0e8d360a-4c82-43ea-b270-74a588dce88a"
+ "WESTUS2:20200122T230913Z:67fb1747-a4a2-41c2-af82-0f744875ee58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4041,10 +4098,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:43 GMT"
+ "Wed, 22 Jan 2020 23:09:13 GMT"
],
"Content-Length": [
- "1487"
+ "1489"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4053,25 +4110,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715\",\r\n \"name\": \"ps2715\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps636\",\r\n \"etag\": \"AAAAAAjvBGM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2715.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2715\",\r\n \"endpoint\": \"sb://iothub-ns-ps2715-2351047-75f833d3dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818\",\r\n \"name\": \"ps1818\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7381\",\r\n \"etag\": \"AAAAAArmuXQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1818.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1818\",\r\n \"endpoint\": \"sb://iothub-ns-ps1818-2813745-c742a7d8c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9ldmVudEh1YjI1Mjc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTAyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"kafkaEnabled\": false\r\n },\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a92eec3-24f3-4c1b-afc7-f91b0e2d38f9"
+ "aaf3ceca-ecb3-4919-84a1-f8f4a049543b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
],
"Content-Type": [
@@ -4089,7 +4146,7 @@
"no-cache"
],
"x-ms-request-id": [
- "fcef303c-5ae8-45f9-aece-57228e5d3065_M1SN1_M1SN1"
+ "adbbac2e-cb03-4d54-be7b-86f8f737acb4_M1SN1_M1SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -4098,14 +4155,14 @@
"Service-Bus-Resource-Provider/SN1",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "49"
],
"x-ms-correlation-request-id": [
- "80055809-20ac-4138-a1ca-2808a6969967"
+ "92b73813-b951-4df2-9ea9-5ed2bd668f38"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195155Z:80055809-20ac-4138-a1ca-2808a6969967"
+ "WESTUS:20200122T225957Z:92b73813-b951-4df2-9ea9-5ed2bd668f38"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4114,10 +4171,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:51:54 GMT"
+ "Wed, 22 Jan 2020 22:59:56 GMT"
],
"Content-Length": [
- "639"
+ "638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4126,19 +4183,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527\",\r\n \"name\": \"eventHub2527\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub2527\",\r\n \"createdAt\": \"2019-10-21T19:51:51.94Z\",\r\n \"updatedAt\": \"2019-10-21T19:51:51.94Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub2527.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902\",\r\n \"name\": \"eventHub8902\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub8902\",\r\n \"createdAt\": \"2020-01-22T22:59:55.3Z\",\r\n \"updatedAt\": \"2020-01-22T22:59:55.3Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub8902.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9ldmVudEh1YjI1Mjc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTAyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
]
},
@@ -4150,7 +4207,7 @@
"no-cache"
],
"x-ms-request-id": [
- "90be2328-deb3-416c-865d-039021172ccf_M1SN1_M1SN1"
+ "b0260aa8-a7d0-4b21-8112-83e16663a1e9_M2SN1_M2SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -4163,10 +4220,10 @@
"11997"
],
"x-ms-correlation-request-id": [
- "1b18fa49-fc46-4302-85e6-4a93503af142"
+ "a03ca8ed-6c17-4ad5-b514-b25bf4c03a3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195225Z:1b18fa49-fc46-4302-85e6-4a93503af142"
+ "WESTUS:20200122T230027Z:a03ca8ed-6c17-4ad5-b514-b25bf4c03a3d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4175,10 +4232,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:52:24 GMT"
+ "Wed, 22 Jan 2020 23:00:27 GMT"
],
"Content-Length": [
- "639"
+ "638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4187,19 +4244,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527\",\r\n \"name\": \"eventHub2527\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub2527\",\r\n \"createdAt\": \"2019-10-21T19:51:51.94Z\",\r\n \"updatedAt\": \"2019-10-21T19:51:51.94Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub2527.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902\",\r\n \"name\": \"eventHub8902\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub8902\",\r\n \"createdAt\": \"2020-01-22T22:59:55.3Z\",\r\n \"updatedAt\": \"2020-01-22T22:59:55.3Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub8902.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9ldmVudEh1YjI1Mjc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTAyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
]
},
@@ -4211,7 +4268,7 @@
"no-cache"
],
"x-ms-request-id": [
- "c066c645-37f1-4310-b2e3-bbef0c34b1b5_M5SN1_M5SN1"
+ "d337cce9-e025-4c4c-b174-fd1f6cc33b02_M0SN1_M0SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -4224,10 +4281,10 @@
"11996"
],
"x-ms-correlation-request-id": [
- "928bac7d-df4f-405b-a725-c11c75d796ba"
+ "c5bd69c4-66b4-4643-9ede-d90849aa74fd"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195255Z:928bac7d-df4f-405b-a725-c11c75d796ba"
+ "WESTUS:20200122T230057Z:c5bd69c4-66b4-4643-9ede-d90849aa74fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4236,7 +4293,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:52:55 GMT"
+ "Wed, 22 Jan 2020 23:00:57 GMT"
],
"Content-Length": [
"638"
@@ -4248,25 +4305,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527\",\r\n \"name\": \"eventHub2527\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub2527\",\r\n \"createdAt\": \"2019-10-21T19:51:51.94Z\",\r\n \"updatedAt\": \"2019-10-21T19:52:45.243Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub2527.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902\",\r\n \"name\": \"eventHub8902\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub8902\",\r\n \"createdAt\": \"2020-01-22T22:59:55.3Z\",\r\n \"updatedAt\": \"2020-01-22T23:00:45.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub8902.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527/eventhubs/ps520?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9ldmVudEh1YjI1MjcvZXZlbnRodWJzL3BzNTIwP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902/eventhubs/ps2744?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTAyL2V2ZW50aHVicy9wczI3NDQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c70dcc0-53a4-41a8-aa4b-0b62062f604b"
+ "630e4380-69e9-47ba-8c62-acc5038fef9c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
],
"Content-Type": [
@@ -4284,7 +4341,7 @@
"no-cache"
],
"x-ms-request-id": [
- "f0d28d0c-0447-4fec-97b8-599562e1dfa0_M5SN1_M5SN1"
+ "7fc53950-7dcd-456d-ab86-0cb715ff3618_M3SN1_M3SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -4294,13 +4351,13 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "ac87bab1-2ec1-4e3a-a5c7-20df9012ff66"
+ "073abb9e-feb4-49d9-a6bb-d5fa03045360"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195313Z:ac87bab1-2ec1-4e3a-a5c7-20df9012ff66"
+ "WESTUS:20200122T230115Z:073abb9e-feb4-49d9-a6bb-d5fa03045360"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4309,10 +4366,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:12 GMT"
+ "Wed, 22 Jan 2020 23:01:15 GMT"
],
"Content-Length": [
- "418"
+ "421"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4321,25 +4378,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527/eventhubs/ps520\",\r\n \"name\": \"ps520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-10-21T19:53:11.94Z\",\r\n \"updatedAt\": \"2019-10-21T19:53:12.433Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902/eventhubs/ps2744\",\r\n \"name\": \"ps2744\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-01-22T23:01:14.667Z\",\r\n \"updatedAt\": \"2020-01-22T23:01:15.23Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527/eventhubs/ps520/authorizationRules/ps7323?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9ldmVudEh1YjI1MjcvZXZlbnRodWJzL3BzNTIwL2F1dGhvcml6YXRpb25SdWxlcy9wczczMjM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902/eventhubs/ps2744/authorizationRules/ps5036?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTAyL2V2ZW50aHVicy9wczI3NDQvYXV0aG9yaXphdGlvblJ1bGVzL3BzNTAzNj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5e48869-2ac9-48ea-ae5f-7b19bb6e0f4d"
+ "4191f196-5025-4801-8bdd-0b6a891dcdb9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
],
"Content-Type": [
@@ -4357,7 +4414,7 @@
"no-cache"
],
"x-ms-request-id": [
- "f6372536-6284-441a-83e2-0280e4bb205b_M5SN1_M5SN1"
+ "c8b4915d-5618-4df9-8490-7db91c54a004_M3SN1_M3SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -4367,13 +4424,13 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "bdf6c19e-e5f2-4c8a-9032-42054f745ea4"
+ "5a635ef6-028d-45b5-87c7-4533aa4c5111"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195313Z:bdf6c19e-e5f2-4c8a-9032-42054f745ea4"
+ "WESTUS:20200122T230116Z:5a635ef6-028d-45b5-87c7-4533aa4c5111"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4382,10 +4439,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:13 GMT"
+ "Wed, 22 Jan 2020 23:01:15 GMT"
],
"Content-Length": [
- "325"
+ "327"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4394,25 +4451,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527/eventhubs/ps520/authorizationRules/ps7323\",\r\n \"name\": \"ps7323\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902/eventhubs/ps2744/authorizationRules/ps5036\",\r\n \"name\": \"ps5036\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.EventHub/namespaces/eventHub2527/eventhubs/ps520/authorizationRules/ps7323/ListKeys?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9ldmVudEh1YjI1MjcvZXZlbnRodWJzL3BzNTIwL2F1dGhvcml6YXRpb25SdWxlcy9wczczMjMvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.EventHub/namespaces/eventHub8902/eventhubs/ps2744/authorizationRules/ps5036/ListKeys?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTAyL2V2ZW50aHVicy9wczI3NDQvYXV0aG9yaXphdGlvblJ1bGVzL3BzNTAzNi9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e85d4bbd-522c-448d-987f-1e6c955ccc5a"
+ "bd824541-5736-4b64-9665-fdea57c5442c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
]
},
@@ -4424,7 +4481,7 @@
"no-cache"
],
"x-ms-request-id": [
- "7f33486a-3bd0-46f0-baf5-6a149e456308_M5SN1_M5SN1"
+ "24b2d19d-a2fa-4f56-9e9e-bf97c2ad17c6_M3SN1_M3SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -4437,10 +4494,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "6e2e868f-573b-42c4-b711-af6c92b2c11b"
+ "fc7a98ae-123e-46a9-817f-3170c14c1d10"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195313Z:6e2e868f-573b-42c4-b711-af6c92b2c11b"
+ "WESTUS:20200122T230116Z:fc7a98ae-123e-46a9-817f-3170c14c1d10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4449,10 +4506,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:13 GMT"
+ "Wed, 22 Jan 2020 23:01:16 GMT"
],
"Content-Length": [
- "512"
+ "514"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4461,19 +4518,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=;EntityPath=ps520\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub2527.servicebus.windows.net/;SharedAccessKeyName=ps7323;SharedAccessKey=Koddl+5PnkwEtf3DMldSuFu6XF4sEFNSzbjGJd3v/PQ=;EntityPath=ps520\",\r\n \"primaryKey\": \"evhdMVMPg5rWDknDy9AVh17X5C4lp5asfvXAKhsFjzw=\",\r\n \"secondaryKey\": \"Koddl+5PnkwEtf3DMldSuFu6XF4sEFNSzbjGJd3v/PQ=\",\r\n \"keyName\": \"ps7323\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=;EntityPath=ps2744\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub8902.servicebus.windows.net/;SharedAccessKeyName=ps5036;SharedAccessKey=jd8mOCV6BxCzW46uAfhu/BRyutVJSg5xpNOwpvbvsuo=;EntityPath=ps2744\",\r\n \"primaryKey\": \"ZI5qAEwkK1YER7Kph+CMfNlJmtiWZvugMSkrs2NBE08=\",\r\n \"secondaryKey\": \"jd8mOCV6BxCzW46uAfhu/BRyutVJSg5xpNOwpvbvsuo=\",\r\n \"keyName\": \"ps5036\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDlhYzU4MmYtZDQ3Zi00OGE4LTg3ZTctZGJhMGNlMTI2NzQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTURsaFl6VTRNbVl0WkRRM1ppMDBPR0U0TFRnM1pUY3RaR0poTUdObE1USTJOelF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2YzNGJkY2MtYzc0OS00NmVmLWEzNzItY2MwMDBjMTRjYzc0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJZek5HSmtZMk10WXpjME9TMDBObVZtTFdFek56SXRZMk13TURCak1UUmpZemMwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4488,16 +4545,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-request-id": [
- "a915a66b-ad71-4544-9012-628b09b52d70"
+ "b8786216-baf4-45d3-a41e-2d96599815ed"
],
"x-ms-correlation-request-id": [
- "a915a66b-ad71-4544-9012-628b09b52d70"
+ "b8786216-baf4-45d3-a41e-2d96599815ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195347Z:a915a66b-ad71-4544-9012-628b09b52d70"
+ "WESTUS2:20200122T230150Z:b8786216-baf4-45d3-a41e-2d96599815ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4506,7 +4563,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:53:47 GMT"
+ "Wed, 22 Jan 2020 23:01:50 GMT"
],
"Content-Length": [
"22"
@@ -4522,15 +4579,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjQ0Y2E1ZmItMTlkZC00MzFiLWEyYzUtODI4ZDdhOWFmNGMy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpRMFkyRTFabUl0TVRsa1pDMDBNekZpTFdFeVl6VXRPREk0WkRkaE9XRm1OR015P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGNlYjViMDUtNjBhYy00Zjk1LTliNzMtMGY3YmEzNzlkMzU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdObFlqVmlNRFV0TmpCaFl5MDBaamsxTFRsaU56TXRNR1kzWW1Fek56bGtNelUyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4541,20 +4598,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
"x-ms-request-id": [
- "45e59676-6042-4f81-a5ed-c0f79e52df64"
+ "40038ae1-1223-4acf-b5e4-52ac17644703"
],
"x-ms-correlation-request-id": [
- "45e59676-6042-4f81-a5ed-c0f79e52df64"
+ "40038ae1-1223-4acf-b5e4-52ac17644703"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195422Z:45e59676-6042-4f81-a5ed-c0f79e52df64"
+ "WESTUS2:20200122T230224Z:40038ae1-1223-4acf-b5e4-52ac17644703"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4563,7 +4620,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:21 GMT"
+ "Wed, 22 Jan 2020 23:02:23 GMT"
],
"Content-Length": [
"22"
@@ -4579,15 +4636,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2VjZTg4NzktZDcyNy00NjlkLWI0OTctZDAxYTU4MDdlMDJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJWalpUZzROemt0WkRjeU55MDBOamxrTFdJME9UY3RaREF4WVRVNE1EZGxNREptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjZkNjRlODctNTIzMC00MTY3LTgzMzctNDA5NDgwNjRhYTUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpaa05qUmxPRGN0TlRJek1DMDBNVFkzTFRnek16Y3ROREE1TkRnd05qUmhZVFV3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4602,16 +4659,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11983"
],
"x-ms-request-id": [
- "e9c2cfe6-72d0-4b68-afd1-de5504620c8e"
+ "326e82a7-d483-4954-b235-584cc4ec7d4c"
],
"x-ms-correlation-request-id": [
- "e9c2cfe6-72d0-4b68-afd1-de5504620c8e"
+ "326e82a7-d483-4954-b235-584cc4ec7d4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195456Z:e9c2cfe6-72d0-4b68-afd1-de5504620c8e"
+ "WESTUS2:20200122T230258Z:326e82a7-d483-4954-b235-584cc4ec7d4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4620,7 +4677,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:54:55 GMT"
+ "Wed, 22 Jan 2020 23:02:57 GMT"
],
"Content-Length": [
"22"
@@ -4636,15 +4693,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTM3ZDM2OTMtYTljNS00OWExLTkwN2UtZTAxYjdlMDJmY2Rj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRNM1pETTJPVE10WVRsak5TMDBPV0V4TFRrd04yVXRaVEF4WWpkbE1ESm1ZMlJqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2U5MDM1MTktZmZiNy00MGY5LWI1NjUtNGEwNzcyNzcxMmVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTjJVNU1ETTFNVGt0Wm1aaU55MDBNR1k1TFdJMU5qVXROR0V3TnpjeU56Y3hNbVZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4655,20 +4712,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
"x-ms-request-id": [
- "21b5e37a-7436-4745-994b-3f9794671059"
+ "97007c27-80cd-4201-90a9-a2e446090fcf"
],
"x-ms-correlation-request-id": [
- "21b5e37a-7436-4745-994b-3f9794671059"
+ "97007c27-80cd-4201-90a9-a2e446090fcf"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195533Z:21b5e37a-7436-4745-994b-3f9794671059"
+ "WESTUS2:20200122T230333Z:97007c27-80cd-4201-90a9-a2e446090fcf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4677,7 +4734,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:55:32 GMT"
+ "Wed, 22 Jan 2020 23:03:33 GMT"
],
"Content-Length": [
"20"
@@ -4693,15 +4750,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTM3ZDM2OTMtYTljNS00OWExLTkwN2UtZTAxYjdlMDJmY2Rj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRNM1pETTJPVE10WVRsak5TMDBPV0V4TFRrd04yVXRaVEF4WWpkbE1ESm1ZMlJqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2U5MDM1MTktZmZiNy00MGY5LWI1NjUtNGEwNzcyNzcxMmVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTjJVNU1ETTFNVGt0Wm1aaU55MDBNR1k1TFdJMU5qVXROR0V3TnpjeU56Y3hNbVZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4716,16 +4773,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11976"
],
"x-ms-request-id": [
- "2b43ea3d-a6c5-4366-b478-e2fa4457e76f"
+ "a7518dc9-8939-45bf-8149-67f1d5b025d8"
],
"x-ms-correlation-request-id": [
- "2b43ea3d-a6c5-4366-b478-e2fa4457e76f"
+ "a7518dc9-8939-45bf-8149-67f1d5b025d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195603Z:2b43ea3d-a6c5-4366-b478-e2fa4457e76f"
+ "WESTUS2:20200122T230403Z:a7518dc9-8939-45bf-8149-67f1d5b025d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4734,7 +4791,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:02 GMT"
+ "Wed, 22 Jan 2020 23:04:03 GMT"
],
"Content-Length": [
"22"
@@ -4750,15 +4807,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMmZmOTllOGEtMGU2OS00YzdhLThhYWEtNGY2ZDkwZjA4YmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTW1abU9UbGxPR0V0TUdVMk9TMDBZemRoTFRoaFlXRXROR1kyWkRrd1pqQTRZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTIwOWI3ODItYTE4ZS00ZGNkLWI1MWUtZWM1M2I1YTMyMjg1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RJd09XSTNPREl0WVRFNFpTMDBaR05rTFdJMU1XVXRaV00xTTJJMVlUTXlNamcxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4773,16 +4830,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11970"
],
"x-ms-request-id": [
- "1b901f13-fce0-4884-93a0-d899b79645bd"
+ "aaf9f842-389b-44f8-bb78-f09a1324fbee"
],
"x-ms-correlation-request-id": [
- "1b901f13-fce0-4884-93a0-d899b79645bd"
+ "aaf9f842-389b-44f8-bb78-f09a1324fbee"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195652Z:1b901f13-fce0-4884-93a0-d899b79645bd"
+ "WESTUS2:20200122T230439Z:aaf9f842-389b-44f8-bb78-f09a1324fbee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4791,7 +4848,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:56:51 GMT"
+ "Wed, 22 Jan 2020 23:04:39 GMT"
],
"Content-Length": [
"22"
@@ -4807,15 +4864,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2VjNDQzZDgtZDdlMy00ZmU5LWIzYTctZTcxMGI0OWViMzQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJWak5EUXpaRGd0WkRkbE15MDBabVU1TFdJellUY3RaVGN4TUdJME9XVmlNelF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzM1ZjY2ZDctNjZhYi00ZjgzLWIwZjgtOGEzNTE4NTc5YTIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpNMVpqWTJaRGN0TmpaaFlpMDBaamd6TFdJd1pqZ3RPR0V6TlRFNE5UYzVZVEl6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4827,19 +4884,19 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11966"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "43fface5-22ef-40e9-b039-9bc46a8066bd"
+ "090e02ab-f259-40f1-bc58-24bd6fd559d4"
],
"x-ms-correlation-request-id": [
- "43fface5-22ef-40e9-b039-9bc46a8066bd"
+ "090e02ab-f259-40f1-bc58-24bd6fd559d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195730Z:43fface5-22ef-40e9-b039-9bc46a8066bd"
+ "WESTUS2:20200122T230513Z:090e02ab-f259-40f1-bc58-24bd6fd559d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4848,7 +4905,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:57:30 GMT"
+ "Wed, 22 Jan 2020 23:05:12 GMT"
],
"Content-Length": [
"22"
@@ -4864,15 +4921,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2ZiODM3MGQtNTk4Yi00MWJhLTg2NDMtZmM5NGE5NDlkOWVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJaaU9ETTNNR1F0TlRrNFlpMDBNV0poTFRnMk5ETXRabU01TkdFNU5EbGtPV1ZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWRmOWUxYjItMjdhNS00ZTM0LWFiZTktZTNjZGNiM2MyNGM3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWldSbU9XVXhZakl0TWpkaE5TMDBaVE0wTFdGaVpUa3RaVE5qWkdOaU0yTXlOR00zP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4887,16 +4944,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11962"
],
"x-ms-request-id": [
- "5b0bb0bb-978b-4134-9083-6f1db11161e3"
+ "c970e8e1-596b-4a5e-9cc4-2944d2f022b8"
],
"x-ms-correlation-request-id": [
- "5b0bb0bb-978b-4134-9083-6f1db11161e3"
+ "c970e8e1-596b-4a5e-9cc4-2944d2f022b8"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195806Z:5b0bb0bb-978b-4134-9083-6f1db11161e3"
+ "WESTUS2:20200122T230548Z:c970e8e1-596b-4a5e-9cc4-2944d2f022b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4905,7 +4962,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:06 GMT"
+ "Wed, 22 Jan 2020 23:05:47 GMT"
],
"Content-Length": [
"22"
@@ -4921,15 +4978,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGVmZmEwMmEtNWY0My00NDgzLWI5YzYtMWE3YWM5ODBiNDEy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdWbVptRXdNbUV0TldZME15MDBORGd6TFdJNVl6WXRNV0UzWVdNNU9EQmlOREV5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGExMGFiMmMtNzVlNC00NWI0LWExZTItZjhkYzIwYTU5MmZl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdFeE1HRmlNbU10TnpWbE5DMDBOV0kwTFdFeFpUSXRaamhrWXpJd1lUVTVNbVpsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4944,16 +5001,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11959"
],
"x-ms-request-id": [
- "95312821-1284-463d-8009-96e7c5b8f717"
+ "c649af88-3dec-49bb-ac2c-08e34a0e9f0f"
],
"x-ms-correlation-request-id": [
- "95312821-1284-463d-8009-96e7c5b8f717"
+ "c649af88-3dec-49bb-ac2c-08e34a0e9f0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195840Z:95312821-1284-463d-8009-96e7c5b8f717"
+ "WESTUS2:20200122T230622Z:c649af88-3dec-49bb-ac2c-08e34a0e9f0f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4962,7 +5019,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:58:40 GMT"
+ "Wed, 22 Jan 2020 23:06:22 GMT"
],
"Content-Length": [
"22"
@@ -4978,15 +5035,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWM1YzRmOGMtYjZmOS00NDA4LWIwMzAtOTgyN2Y2ZGU0ZjNk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWldNMVl6Um1PR010WWpabU9TMDBOREE0TFdJd016QXRPVGd5TjJZMlpHVTBaak5rP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjcxOWU1M2UtOWQ3NS00OTljLTkzMDYtMTYzYTg4YWU0MGMx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpjeE9XVTFNMlV0T1dRM05TMDBPVGxqTFRrek1EWXRNVFl6WVRnNFlXVTBNR014P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4997,20 +5054,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
- ],
"x-ms-request-id": [
- "4cdb1457-4959-4cb5-9aa6-3888c7241944"
+ "8c3683ae-2684-48db-b000-4c83c889f80d"
],
"x-ms-correlation-request-id": [
- "4cdb1457-4959-4cb5-9aa6-3888c7241944"
+ "8c3683ae-2684-48db-b000-4c83c889f80d"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195914Z:4cdb1457-4959-4cb5-9aa6-3888c7241944"
+ "WESTUS2:20200122T230656Z:8c3683ae-2684-48db-b000-4c83c889f80d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5019,7 +5076,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:13 GMT"
+ "Wed, 22 Jan 2020 23:06:56 GMT"
],
"Content-Length": [
"22"
@@ -5035,15 +5092,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjE3NGUyOWQtYTEyNS00ODBjLTk2N2MtYTE2ZWFlNGYwOTc2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFM05HVXlPV1F0WVRFeU5TMDBPREJqTFRrMk4yTXRZVEUyWldGbE5HWXdPVGMyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODU0NDBmOWItYTQyYS00M2RhLThhNmUtMGU0ZTMyMjFlNzNh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RVME5EQm1PV0l0WVRReVlTMDBNMlJoTFRoaE5tVXRNR1UwWlRNeU1qRmxOek5oP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5058,16 +5115,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11951"
],
"x-ms-request-id": [
- "f471fc0c-1a15-4058-b138-601d6c42ead7"
+ "88c6c81e-9b85-4740-8201-8017a753a15d"
],
"x-ms-correlation-request-id": [
- "f471fc0c-1a15-4058-b138-601d6c42ead7"
+ "88c6c81e-9b85-4740-8201-8017a753a15d"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T195949Z:f471fc0c-1a15-4058-b138-601d6c42ead7"
+ "WESTUS2:20200122T230730Z:88c6c81e-9b85-4740-8201-8017a753a15d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5076,7 +5133,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:59:48 GMT"
+ "Wed, 22 Jan 2020 23:07:30 GMT"
],
"Content-Length": [
"22"
@@ -5092,15 +5149,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzk2MGJmNTUtMGRlZC00MTQyLWFlNmQtMDc3ZGY5MmFlY2U4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXprMk1HSm1OVFV0TUdSbFpDMDBNVFF5TFdGbE5tUXRNRGMzWkdZNU1tRmxZMlU0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGJkN2UyOGItYzM5OS00OTk0LTg4M2EtZmYyNTk5YmZiOTdj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dKa04yVXlPR0l0WXpNNU9TMDBPVGswTFRnNE0yRXRabVl5TlRrNVltWmlPVGRqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5115,16 +5172,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11946"
],
"x-ms-request-id": [
- "1d01fa32-9ffc-4f04-aca1-542d4a70df6a"
+ "181a724c-1d2e-4f10-a69d-a7cd6f7ff035"
],
"x-ms-correlation-request-id": [
- "1d01fa32-9ffc-4f04-aca1-542d4a70df6a"
+ "181a724c-1d2e-4f10-a69d-a7cd6f7ff035"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200023Z:1d01fa32-9ffc-4f04-aca1-542d4a70df6a"
+ "WESTUS2:20200122T230805Z:181a724c-1d2e-4f10-a69d-a7cd6f7ff035"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5133,7 +5190,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:23 GMT"
+ "Wed, 22 Jan 2020 23:08:04 GMT"
],
"Content-Length": [
"22"
@@ -5149,21 +5206,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715/routing/routes/$testall?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNS9yb3V0aW5nL3JvdXRlcy8kdGVzdGFsbD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818/routing/routes/$testall?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTgvcm91dGluZy9yb3V0ZXMvJHRlc3RhbGw/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"routingSource\": \"TwinChangeEvents\",\r\n \"message\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "725a5a8d-8031-4a7b-ac0a-a147f933c80f"
+ "772402ac-d2f0-4417-bba1-ebe4b2f53530"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -5187,13 +5244,13 @@
"1199"
],
"x-ms-request-id": [
- "04d9b427-a05f-4e77-956c-430e416d5764"
+ "b27f87fa-dd1e-4374-ac5d-bd5e8ed45c4c"
],
"x-ms-correlation-request-id": [
- "04d9b427-a05f-4e77-956c-430e416d5764"
+ "b27f87fa-dd1e-4374-ac5d-bd5e8ed45c4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200026Z:04d9b427-a05f-4e77-956c-430e416d5764"
+ "WESTUS2:20200122T230806Z:b27f87fa-dd1e-4374-ac5d-bd5e8ed45c4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5202,7 +5259,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:00:25 GMT"
+ "Wed, 22 Jan 2020 23:08:05 GMT"
],
"Content-Length": [
"136"
@@ -5214,19 +5271,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"name\": \"ps3993\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5445\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"name\": \"ps7922\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps2845\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2M5OTNjOGYtODhjOC00ZDc1LWFkYjQtNzIxZTk4Mjg5OTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJNNU9UTmpPR1l0T0Roak9DMDBaRGMxTFdGa1lqUXROekl4WlRrNE1qZzVPVEppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTYxMDczZWYtNjgxZC00NDEwLThmY2UtM2I1NDUzZmJiOTgy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRZeE1EY3paV1l0TmpneFpDMDBOREV3TFRobVkyVXRNMkkxTkRVelptSmlPVGd5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5241,16 +5298,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "11941"
],
"x-ms-request-id": [
- "3abb7270-3b9f-40c5-b940-70582d232546"
+ "71ab9d14-c8cf-4684-8202-2ae5eb3fd4e1"
],
"x-ms-correlation-request-id": [
- "3abb7270-3b9f-40c5-b940-70582d232546"
+ "71ab9d14-c8cf-4684-8202-2ae5eb3fd4e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200103Z:3abb7270-3b9f-40c5-b940-70582d232546"
+ "WESTUS2:20200122T230839Z:71ab9d14-c8cf-4684-8202-2ae5eb3fd4e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5259,7 +5316,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:02 GMT"
+ "Wed, 22 Jan 2020 23:08:39 GMT"
],
"Content-Length": [
"22"
@@ -5275,15 +5332,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODg5OWMyNGItYTYxYy00YzAzLWE3MjEtODQ5NmNhYWEyYzhl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RnNU9XTXlOR0l0WVRZeFl5MDBZekF6TFdFM01qRXRPRFE1Tm1OaFlXRXlZemhsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTgzOTA5MDYtZTNiNi00YmRjLWI4MzgtMDM3MWYzZjg5ODNh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRnek9UQTVNRFl0WlROaU5pMDBZbVJqTFdJNE16Z3RNRE0zTVdZelpqZzVPRE5oP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5294,20 +5351,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
"x-ms-request-id": [
- "41ea6919-669f-4f3d-99c4-054e7d588b0c"
+ "9d502a7f-dbd7-40c3-96d6-5999b5023a5a"
],
"x-ms-correlation-request-id": [
- "41ea6919-669f-4f3d-99c4-054e7d588b0c"
+ "9d502a7f-dbd7-40c3-96d6-5999b5023a5a"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200143Z:41ea6919-669f-4f3d-99c4-054e7d588b0c"
+ "WESTUS2:20200122T230913Z:9d502a7f-dbd7-40c3-96d6-5999b5023a5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5316,7 +5373,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:43 GMT"
+ "Wed, 22 Jan 2020 23:09:13 GMT"
],
"Content-Length": [
"22"
@@ -5332,21 +5389,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps636/providers/Microsoft.Devices/IotHubs/ps2715?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzMjcxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7381/providers/Microsoft.Devices/IotHubs/ps1818?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzM4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE4MTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42bb5685-d7b8-4555-af50-765c0e25bc03"
+ "fe77bac8-5528-4bd7-b9bf-2a40840569f5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5358,13 +5415,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWViY2E1OGQtMzFhZC00NzgzLWFkMmEtMTljMjJkMTdiNTIw?api-version=2019-07-01-preview&operationSource=os_ih"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjA2YWM1ODctZTJkOS00YTNjLTg0MzMtYTI4M2Q2MTQ2MDMy?api-version=2019-07-01-preview&operationSource=os_ih"
],
"Retry-After": [
"15"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWViY2E1OGQtMzFhZC00NzgzLWFkMmEtMTljMjJkMTdiNTIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjA2YWM1ODctZTJkOS00YTNjLTg0MzMtYTI4M2Q2MTQ2MDMy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -5373,13 +5430,13 @@
"14999"
],
"x-ms-request-id": [
- "333dd602-c8a0-46b3-ba5b-1f5a51bde392"
+ "102fa6d6-69c7-4e4d-a793-3aba0db1d4f6"
],
"x-ms-correlation-request-id": [
- "333dd602-c8a0-46b3-ba5b-1f5a51bde392"
+ "102fa6d6-69c7-4e4d-a793-3aba0db1d4f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200145Z:333dd602-c8a0-46b3-ba5b-1f5a51bde392"
+ "WESTUS2:20200122T230914Z:102fa6d6-69c7-4e4d-a793-3aba0db1d4f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5388,7 +5445,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:01:45 GMT"
+ "Wed, 22 Jan 2020 23:09:14 GMT"
],
"Content-Length": [
"4"
@@ -5404,15 +5461,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWViY2E1OGQtMzFhZC00NzgzLWFkMmEtMTljMjJkMTdiNTIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWldWaVkyRTFPR1F0TXpGaFpDMDBOemd6TFdGa01tRXRNVGxqTWpKa01UZGlOVEl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjA2YWM1ODctZTJkOS00YTNjLTg0MzMtYTI4M2Q2MTQ2MDMy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpBMllXTTFPRGN0WlRKa09TMDBZVE5qTFRnME16TXRZVEk0TTJRMk1UUTJNRE15P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5423,20 +5480,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
- ],
"x-ms-request-id": [
- "58ffb3e0-b7f5-48ab-8dd4-1de6cbb0ba42"
+ "fdcd3cbb-9472-45b7-b5ec-d484393da9c7"
],
"x-ms-correlation-request-id": [
- "58ffb3e0-b7f5-48ab-8dd4-1de6cbb0ba42"
+ "fdcd3cbb-9472-45b7-b5ec-d484393da9c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200200Z:58ffb3e0-b7f5-48ab-8dd4-1de6cbb0ba42"
+ "WESTUS2:20200122T230929Z:fdcd3cbb-9472-45b7-b5ec-d484393da9c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5445,7 +5502,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:02:00 GMT"
+ "Wed, 22 Jan 2020 23:09:29 GMT"
],
"Content-Length": [
"22"
@@ -5461,15 +5518,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWViY2E1OGQtMzFhZC00NzgzLWFkMmEtMTljMjJkMTdiNTIw?api-version=2019-07-01-preview&operationSource=os_ih",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWldWaVkyRTFPR1F0TXpGaFpDMDBOemd6TFdGa01tRXRNVGxqTWpKa01UZGlOVEl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjA2YWM1ODctZTJkOS00YTNjLTg0MzMtYTI4M2Q2MTQ2MDMy?api-version=2019-07-01-preview&operationSource=os_ih",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpBMllXTTFPRGN0WlRKa09TMDBZVE5qTFRnME16TXRZVEk0TTJRMk1UUTJNRE15P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5481,7 +5538,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZWViY2E1OGQtMzFhZC00NzgzLWFkMmEtMTljMjJkMTdiNTIw?api-version=2019-07-01-preview&operationSource=os_ih"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjA2YWM1ODctZTJkOS00YTNjLTg0MzMtYTI4M2Q2MTQ2MDMy?api-version=2019-07-01-preview&operationSource=os_ih"
],
"Retry-After": [
"15"
@@ -5490,16 +5547,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11935"
],
"x-ms-request-id": [
- "b0f6b6fb-dc53-4209-abdc-1de41d6be403"
+ "1f3a5f00-8d34-4461-b13d-8ed354930081"
],
"x-ms-correlation-request-id": [
- "b0f6b6fb-dc53-4209-abdc-1de41d6be403"
+ "1f3a5f00-8d34-4461-b13d-8ed354930081"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T200200Z:b0f6b6fb-dc53-4209-abdc-1de41d6be403"
+ "WESTUS2:20200122T230930Z:1f3a5f00-8d34-4461-b13d-8ed354930081"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5508,7 +5565,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 20:02:00 GMT"
+ "Wed, 22 Jan 2020 23:09:30 GMT"
],
"Expires": [
"-1"
@@ -5523,18 +5580,18 @@
],
"Names": {
"Test-AzureRmIotHubRoutingLifecycle": [
- "ps2715",
- "ps636",
- "eventHub2527",
- "ps520",
- "ps7323",
- "ps5445",
- "ps8031",
- "ps9952",
- "ps3993",
- "ps7283",
- "ps9522",
- "ps8923"
+ "ps1818",
+ "ps7381",
+ "eventHub8902",
+ "ps2744",
+ "ps5036",
+ "ps2845",
+ "ps5270",
+ "ps616",
+ "ps7922",
+ "ps4746",
+ "ps8611",
+ "ps2122"
]
},
"Variables": {
diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json
index b9cc057eb809..ac9996fe11d6 100644
--- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json
+++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4284ad81-4683-4caa-ab44-0f70f43cd371"
+ "231a8a57-5110-4f9d-916b-b997a0b70ad1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
]
},
"ResponseHeaders": {
@@ -27,16 +27,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11995"
],
"x-ms-request-id": [
- "ac3bf65e-dc8e-4037-8ab9-423560b1562b"
+ "239df54f-6fc3-4b02-b456-deb8bffe41e9"
],
"x-ms-correlation-request-id": [
- "ac3bf65e-dc8e-4037-8ab9-423560b1562b"
+ "239df54f-6fc3-4b02-b456-deb8bffe41e9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193344Z:ac3bf65e-dc8e-4037-8ab9-423560b1562b"
+ "WESTUS:20200122T223835Z:239df54f-6fc3-4b02-b456-deb8bffe41e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:33:43 GMT"
+ "Wed, 22 Jan 2020 22:38:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,10 +54,10 @@
"-1"
],
"Content-Length": [
- "4349"
+ "5555"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
@@ -67,15 +67,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a464d6d-a26b-4135-8603-7d5099c7a24a"
+ "ff5dcb48-bbaf-41d8-afc7-67ff2e8fbaa9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -86,20 +86,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
"x-ms-request-id": [
- "644bfb46-9a1c-4886-a811-4c72a488451f"
+ "9e8ddb91-ad3a-4c58-87e7-d4c949819ead"
],
"x-ms-correlation-request-id": [
- "644bfb46-9a1c-4886-a811-4c72a488451f"
+ "9e8ddb91-ad3a-4c58-87e7-d4c949819ead"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193358Z:644bfb46-9a1c-4886-a811-4c72a488451f"
+ "WESTUS:20200122T223849Z:9e8ddb91-ad3a-4c58-87e7-d4c949819ead"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -108,10 +108,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:33:57 GMT"
+ "Wed, 22 Jan 2020 22:38:48 GMT"
],
"Content-Length": [
- "151470"
+ "175670"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -120,26 +120,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanga\",\r\n \"name\": \"affanga\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAXjmtY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanga.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanga\",\r\n \"endpoint\": \"sb://iothub-ns-affanga-85919-dbb37074f2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"stg1\",\r\n \"id\": \"f2f26f9d-72a2-4409-b4fd-24b0fd4e9afb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/IlieEdgeTest\",\r\n \"name\": \"IlieEdgeTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXQNps=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"IlieEdgeTest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilieedgetest\",\r\n \"endpoint\": \"sb://iothub-ns-ilieedgete-193665-3774bf2376.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/ilie-test-create\",\r\n \"name\": \"ilie-test-create\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXZl7c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ilie-test-create.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilie-test-create\",\r\n \"endpoint\": \"sb://iothub-ns-ilie-test-207274-908460fd83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/andbuc/providers/Microsoft.Devices/IotHubs/andbuc-test-move\",\r\n \"name\": \"andbuc-test-move\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"andbuc\",\r\n \"etag\": \"AAAAAAWTtWo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"andbuc-test-move.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"andbuc-test-move\",\r\n \"endpoint\": \"sb://iothub-ns-andbuc-tes-271231-875dddaed9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanbackuphub\",\r\n \"name\": \"affanbackuphub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"application\": \"test1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAhqeRY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanbackuphub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanbackuphub\",\r\n \"endpoint\": \"sb://iothub-ns-affanbacku-722541-e6d3b9e3d3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://affandtfx.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affandarrg;SharedAccessKey=****;EntityPath=testhub/orchestrator\",\r\n \"name\": \"ContosoServiceBusQueueEndpoint\",\r\n \"id\": \"308835b4-e0b8-4d43-a2fb-7ffc6bfe3540\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 69,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"pnpBlobEndpoint\",\r\n \"id\": \"17872352-e01c-4ecb-a158-cca9e6f3016a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 23068672,\r\n \"encoding\": \"json\",\r\n \"name\": \"alltelemetrytostorage\",\r\n \"id\": \"7a4da087-6e99-4db4-abef-d6abd924238b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 64,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"blobstorageavro\",\r\n \"id\": \"c5890768-106a-472e-9c80-e064a4a3c8c7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanmain\",\r\n \"name\": \"affanmain\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAd4Etk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Japan East\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanmain.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanmain\",\r\n \"endpoint\": \"sb://iothub-ns-affanmain-723068-75224a8e64.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap\",\r\n \"name\": \"vishalg-euap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAgT8kU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-euap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"vishalg-euap\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2\",\r\n \"name\": \"slowqueue2\",\r\n \"id\": \"ac634d18-4fb5-42e2-9885-25fd4bfae4a0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest\",\r\n \"name\": \"deadqueue\",\r\n \"id\": \"88d2a443-b1a0-4f6b-9815-a88d7414cc77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 10485760,\r\n \"encoding\": \"json\",\r\n \"name\": \"jsontestep\",\r\n \"id\": \"247a72ba-e596-4dc5-be1f-7989711dc273\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"jsonstorageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"jsontestep\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"deadroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"deadqueue\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affancentral\",\r\n \"name\": \"affancentral\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAjXVBY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affancentral.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affancentral\",\r\n \"endpoint\": \"sb://iothub-ns-affancentr-1228701-2801317b54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affancentral;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"ep1ep1\",\r\n \"id\": \"828f52fb-8cb4-4b84-9929-8ffa86bac0f7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 17\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas\",\r\n \"name\": \"iot-hub-rezas\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiXMVo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1608616-9da2f04507.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://event-hubs-standard-rezas.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iot-hub-rezas;SharedAccessKey=****;EntityPath=eh1\",\r\n \"name\": \"event-hubs-standard-rezas\",\r\n \"id\": \"c4210f6d-f6fe-4d61-924e-0be5ddf70900\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"iot-hub-rezas\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"62b37eac-2503-4bdd-80cc-76346a7678a6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas3;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas3\",\r\n \"id\": \"f81f07fb-1c10-4b97-9763-690da645ddec\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas2;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas2-endpoint\",\r\n \"id\": \"eff70371-a0c8-41c5-98ad-a29d5e25cbe3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezaswestus;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezaswestus-endpoint\",\r\n \"id\": \"fab1399d-2c78-4eb4-be2e-a0481c72386a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"owner\",\r\n \"value\": \"reza\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ]\r\n },\r\n {\r\n \"key\": \"building.floor.room\",\r\n \"value\": \"v2\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin-notifications\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas2-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas2-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezaswestus-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezaswestus-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"event-hubs-standard-rezas-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"event-hubs-standard-rezas\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezasgen2;AccountKey=****\",\r\n \"containerName\": \"test\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1\",\r\n \"name\": \"sapan-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhtRMQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1608720-c892db45e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event1\",\r\n \"id\": \"0cb9d371-2160-4856-b24c-9049ff5d6142\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event2\",\r\n \"id\": \"3a496cdb-ae86-46a7-9180-c964451f1758\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event3\",\r\n \"id\": \"643f5500-49a5-44ea-8ade-f3477923cc40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event4\",\r\n \"id\": \"7e3c0327-cfb4-484d-976e-664da962312f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"container\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage12345\",\r\n \"id\": \"d02112ca-f71f-4459-a7f6-349e8e7492c6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage1234\",\r\n \"id\": \"61dc387d-7406-459c-8218-ac0c95063d43\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 20\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/kapil-test/providers/Microsoft.Devices/IotHubs/kapilbuildtest\",\r\n \"name\": \"kapilbuildtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"kapil-test\",\r\n \"etag\": \"AAAAAAbKOWM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapilbuildtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapilbuildtest\",\r\n \"endpoint\": \"sb://iothub-ns-kapilbuild-1609938-ede937158c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"name\",\r\n \"value\": \"kapil\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n },\r\n {\r\n \"key\": \"city\",\r\n \"value\": \"redmond\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"device\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub\",\r\n \"name\": \"RoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAAbHifk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"routingrunnerscenariotest\",\r\n \"endpoint\": \"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"id\": \"c22345cc-ab68-4a29-8d48-503bf6748e39\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"id\": \"67c9b119-ac04-44d9-a9e5-10c644f19dad\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"name\": \"RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"id\": \"a7d8dfd6-7f7d-4665-ad4f-cf24ce4e872b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****\",\r\n \"containerName\": \"routingrunsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"routingrunsttestac\",\r\n \"id\": \"58b37445-965a-4bbc-8c83-961709b471bf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub\",\r\n \"name\": \"EgMgmtTest-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EgMgmtTest-rg\",\r\n \"etag\": \"AAAAAAbHiRc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EgMgmtTest-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egmgmttest-hub\",\r\n \"endpoint\": \"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/icm115773862/providers/Microsoft.Devices/IotHubs/icm115773862\",\r\n \"name\": \"icm115773862\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"icm115773862\",\r\n \"etag\": \"AAAAAAXgyIk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"France Central\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"France South\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"icm115773862.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"icm115773862\",\r\n \"endpoint\": \"sb://iothub-ns-icm1157738-1635035-4a1220ecb2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=icm115773862;AccountKey=****\",\r\n \"containerName\": \"icm115773862\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"icm115773862\",\r\n \"id\": \"26137a13-4e15-4854-a247-23fd60a7740f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"icm115773862\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"icm115773862\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"icm115773862\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub\",\r\n \"name\": \"shishu-canry-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAiqd/c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1635078-9a79c62305.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://sbpremium.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=sbpremiumqueue\",\r\n \"name\": \"sbpremiumqueueep\",\r\n \"id\": \"885c3ccb-015a-4ceb-94a1-7574e582e688\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://sbpremium.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=sbpremiumtopic\",\r\n \"name\": \"sbpremium\",\r\n \"id\": \"be5048b6-5538-467d-a190-f2dd62f1f155\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"shishuEHEndpoint\",\r\n \"id\": \"56e5173a-8182-4b09-b064-138ffa64dc2f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://hnfxscnapsn4prde18g.blob.preprod.core.windows.net/;AccountName=hnfxscnapsn4prde18g;AccountKey=****\",\r\n \"containerName\": \"shishu-0515\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint\",\r\n \"id\": \"6b04e533-64e9-4e65-a27b-0f0d83466f2a\",\r\n \"subscriptionId\": \"af49c0df-b297-4df4-a259-e7d43e254b42\",\r\n \"resourceGroup\": \"Accountpoolservicerg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://hnfxscnapsn4prde18g.blob.preprod.core.windows.net/;AccountName=hnfxscnapsn4prde18g;AccountKey=****\",\r\n \"containerName\": \"shishu-0515-2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint-2\",\r\n \"id\": \"8563df2a-18a1-42fc-809a-17aeafff4bd7\",\r\n \"subscriptionId\": \"af49c0df-b297-4df4-a259-e7d43e254b42\",\r\n \"resourceGroup\": \"Accountpoolservicerg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishuadlsg2;AccountKey=****\",\r\n \"containerName\": \"0717adlsg2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0717shishuadlsg2endpoint\",\r\n \"id\": \"26e28720-727b-4d12-91c4-818269b8fe08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=shishu0717adlsg2;AccountKey=****\",\r\n \"containerName\": \"shishu-0717\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0717\",\r\n \"id\": \"15ec36dc-d42e-412a-877d-af10b25ab95f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"fc944ce5-1376-4322-a0d7-b62bb0518990\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"0920\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"epname\",\r\n \"id\": \"12a0a438-40f8-440a-8336-4dbe88eae751\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"0920\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ep0920\",\r\n \"id\": \"2c33d282-5b8f-4fc0-87e8-a89d1096ba8a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"adls2endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storageroute2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"adls2endpoint-2\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"0920route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"epname\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"sbpremiumroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sbpremium\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"sbpremiumqroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sbpremiumqueueep\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/device-stream-infra-rg/providers/Microsoft.Devices/IotHubs/alekseynortheurope\",\r\n \"name\": \"alekseynortheurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"device-stream-infra-rg\",\r\n \"etag\": \"AAAAAAenCeU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseynortheurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseynortheurope\",\r\n \"endpoint\": \"sb://iothub-ns-alekseynor-1636439-2947969b98.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515\",\r\n \"name\": \"sachinctest0515\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXYLKg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"iothub-ehub-sachinctes-1643033-7c1999b13e\",\r\n \"endpoint\": \"sb://ihsuprodbyres085dednamespace.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"F1\",\r\n \"tier\": \"Free\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm\",\r\n \"name\": \"sachinctest0515arm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXhVAc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515arm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sachinctest0515arm\",\r\n \"endpoint\": \"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub\",\r\n \"name\": \"ea-genhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-gen\",\r\n \"etag\": \"AAAAAAXd9uc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-genhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-genhub\",\r\n \"endpoint\": \"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub\",\r\n \"name\": \"askhura-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tagkey\": \"tagvalue\",\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAAAiQnTU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"askhura-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****\",\r\n \"containerName\": \"hirachyshishu1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"aaaaaa\",\r\n \"id\": \"d8ab0b4d-faeb-4557-a976-92a64413ae10\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest\",\r\n \"name\": \"maxgpgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maxgtest\",\r\n \"etag\": \"AAAAAAX8J3c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxgpgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"maxgpgtest\",\r\n \"endpoint\": \"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test\",\r\n \"name\": \"skintali-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"skintali-test\",\r\n \"etag\": \"AAAAAAX9ccI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"skintali-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"skintali-test\",\r\n \"endpoint\": \"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub\",\r\n \"name\": \"asrudra-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsfdsa\": \"ssdfgh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAjZURY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudra-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5\",\r\n \"name\": \"sapan-iot-5\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAZj96E=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-5.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-5\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting\",\r\n \"name\": \"manualFailoverTesting\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ7syc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manualFailoverTesting.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manualfailovertesting\",\r\n \"endpoint\": \"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub\",\r\n \"name\": \"eliohub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpEVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2\",\r\n \"name\": \"eliohub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpMdA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub2\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manul-failover\",\r\n \"name\": \"manul-failover\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAeV4p0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manul-failover.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manul-failover\",\r\n \"endpoint\": \"sb://iothub-ns-manul-fail-1770469-4175d26eb7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudratesthub\",\r\n \"name\": \"asrudratesthub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAaFyN4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudratesthub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudratesthub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudrates-1770836-658e50b9f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/demo-asrudra\",\r\n \"name\": \"demo-asrudra\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ8cKs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"demo-asrudra.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"demo-asrudra\",\r\n \"endpoint\": \"sb://iothub-ns-demo-asrud-1782619-30ec784c08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm\",\r\n \"name\": \"dmpypin-cdm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAaGOJo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dmpypin-cdm\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/westcentralus-rg/providers/Microsoft.Devices/IotHubs/ankurwestcus\",\r\n \"name\": \"ankurwestcus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"westcentralus-rg\",\r\n \"etag\": \"AAAAAAaG0zU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ankurwestcus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ankurwestcus\",\r\n \"endpoint\": \"sb://iothub-ns-ankurwestc-1792419-67d0616a9c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest\",\r\n \"name\": \"cymgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"cymgtest\",\r\n \"etag\": \"AAAAAAaKJ90=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"cymgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cymgtest\",\r\n \"endpoint\": \"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon\",\r\n \"name\": \"testopsmon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jichangrg\",\r\n \"etag\": \"AAAAAAaKY5k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testopsmon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testopsmon\",\r\n \"endpoint\": \"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-centraluseuap\",\r\n \"name\": \"iot-hub-rezas-centraluseuap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAad4HI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-centraluseuap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-centraluseu\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1812185-14d8e75e5a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt\",\r\n \"name\": \"dmpypin-cdm-pvt\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAana1s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm-pvt.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dmpypin-cdm-pvt\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-central-delme/providers/Microsoft.Devices/IotHubs/ea-trustbox\",\r\n \"name\": \"ea-trustbox\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-central-delme\",\r\n \"etag\": \"AAAAAAbEgkE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-trustbox.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"ea-trustbox\",\r\n \"endpoint\": \"sb://iothub-ns-ea-trustbo-1845736-4cbb218ecb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub\",\r\n \"name\": \"infra-edge-validation-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"infradeploymentverification\",\r\n \"etag\": \"AAAAAAbILsQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"infra-edge-validation-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"infra-edge-validation-hub\",\r\n \"endpoint\": \"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-1\",\r\n \"name\": \"smoke-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAgOy3U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"smoke-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-1870061-122ed7dcdd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=00thxm5itwdvzhiagntpri0;AccountKey=****\",\r\n \"containerName\": \"azure-webjobs-hosts\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1\",\r\n \"id\": \"1ef47630-5ec0-48f2-a00c-e87f0f4adbed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shsink8s1\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"key1\",\r\n \"value\": \"value1\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test\",\r\n \"name\": \"ailn-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ailn-test\",\r\n \"etag\": \"AAAAAAc7sNU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ailn-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ailn-test\",\r\n \"endpoint\": \"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub-2\",\r\n \"name\": \"shishu-canry-hub-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAd7uYY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub-2\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1942357-5075f879b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub-2;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"eventhub0813\",\r\n \"id\": \"c6aa81d4-1d5e-42a8-9120-9cfd6cc6c277\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"a95bf69b-1424-4f10-bd30-d8b1b7eea5ba\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"020725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"02adls2endpoint0725\",\r\n \"id\": \"4ff85ce6-3e8f-45c8-a5c8-4e66c512deca\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"newendpointtest\",\r\n \"id\": \"5c9a656e-0c0e-4268-920b-55ecaa10790e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishu072701;AccountKey=****\",\r\n \"containerName\": \"0729container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0729shishuEP1\",\r\n \"id\": \"718a4cb6-8bcd-4b0c-8557-60fb022c0ca6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"0729shishuroute1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"0729shishuEP1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test\",\r\n \"name\": \"maga-canary-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhT70=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-canary-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-canary-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"service-bus\",\r\n \"id\": \"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"service-bus\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus\",\r\n \"name\": \"postame20190730-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jl20190730\",\r\n \"etag\": \"AAAAAAdJH7A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"postame20190730-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"postame20190730-westus\",\r\n \"endpoint\": \"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-canary-1\",\r\n \"name\": \"sapan-canary-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAdQc8s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-canary-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-canary-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cana-1971304-ab572002b9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/reshant-test/providers/Microsoft.Devices/IotHubs/ReshantMetricMissing\",\r\n \"name\": \"ReshantMetricMissing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"reshant-test\",\r\n \"etag\": \"AAAAAAdtsHA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ReshantMetricMissing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"reshantmetricmissing\",\r\n \"endpoint\": \"sb://iothub-ns-reshantmet-2000600-659799590e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test\",\r\n \"name\": \"shsin-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXRVc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1\",\r\n \"name\": \"shsin-test1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXdow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test1\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari\",\r\n \"name\": \"lanhikari\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"hubhikari\",\r\n \"etag\": \"AAAAAAe9VGY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lanhikari.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lanhikari\",\r\n \"endpoint\": \"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test\",\r\n \"name\": \"maga-walmart-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhTfw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-walmart-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-walmart-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"maga-sb\",\r\n \"id\": \"25db0af1-47e1-4c05-b496-3fe45b8a30fd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"maga-sb\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves\",\r\n \"name\": \"ea-enclaves\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-enclaves\",\r\n \"etag\": \"AAAAAAfO818=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-enclaves.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-enclaves\",\r\n \"endpoint\": \"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash\",\r\n \"name\": \"edgeBugBash\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rkessler\",\r\n \"etag\": \"AAAAAAf2lW0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"edgeBugBash.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"edgebugbash\",\r\n \"endpoint\": \"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary\",\r\n \"name\": \"vishalg-canary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAggMIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-canary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"vishalg-canary\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"abcdefg\",\r\n \"id\": \"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"abc = 'def'\",\r\n \"endpointNames\": [\r\n \"abcdefg\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus\",\r\n \"name\": \"iot-hub-rezas-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAhrj9A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-westus\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"test\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4\",\r\n \"name\": \"iothub-nprr4\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"IotSuiteType\": \"RemoteMonitoringV2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jlian-real-life-sol\",\r\n \"etag\": \"AAAAAAg3mAk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iothub-nprr4.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iothub-nprr4\",\r\n \"endpoint\": \"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4\",\r\n \"name\": \"DeviceNotifications\",\r\n \"id\": \"bc10f706-8fed-4d5a-840e-be26ba4dfa5e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"jlian-real-life-sol\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"TwinRoute\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"LifecycleRoute\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps\",\r\n \"name\": \"sansun-ps\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sansunRG\",\r\n \"etag\": \"AAAAAAg4RxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Korea South\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sansun-ps.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sansun-ps\",\r\n \"endpoint\": \"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-centralus-iot-1\",\r\n \"name\": \"sapan-centralus-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhCjQw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-centralus-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-centralus-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cent-2191603-4935e34927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub\",\r\n \"name\": \"distributed-tracing-iothub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAhWqiE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"distributed-tracing-iothub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"distributed-tracing-iothu\",\r\n \"endpoint\": \"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"iothub-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage\",\r\n \"id\": \"d6e50290-1aec-4054-b93c-a74a461019da\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"5b637589-2dc6-4fd5-a2e0-20cd34e53380\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"json-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"json-format\",\r\n \"id\": \"bd08b5d6-e414-4c15-b00e-47ebd0233137\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"json-format\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing\",\r\n \"name\": \"rentu-test-distributed-tracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAiwOOI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rentu-test-distributed-tracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rentu-test-distributed-tr\",\r\n \"endpoint\": \"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****\",\r\n \"containerName\": \"routing-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"routing-to-storage\",\r\n \"id\": \"2faa9116-b355-4575-bec1-edfc8dec7a66\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"test-routing\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"routing-to-storage\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"buildin\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub\",\r\n \"name\": \"alekseyhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"aleksey\",\r\n \"etag\": \"AAAAAAiHDhY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseyhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseyhub\",\r\n \"endpoint\": \"sb://iothub-ns-alekseyhub-2253333-51cec71543.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-neurope\",\r\n \"name\": \"iot-hub-rezas-neurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiLUkQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-neurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-neurope\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2257359-b58ac968ca.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-seasia\",\r\n \"name\": \"iot-hub-rezas-seasia\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiLXmU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-seasia.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-seasia\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2257406-5a1fbe3b7a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/routing2/providers/Microsoft.Devices/IotHubs/kapilegtest\",\r\n \"name\": \"kapilegtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"routing2\",\r\n \"etag\": \"AAAAAAiTU8g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapilegtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapilegtest\",\r\n \"endpoint\": \"sb://iothub-ns-kapilegtes-2264763-7437699ffe.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"hubname\",\r\n \"value\": \"$iothubname\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n },\r\n {\r\n \"key\": \"author\",\r\n \"value\": \"kapil\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/routing2/providers/Microsoft.Devices/IotHubs/egtest2\",\r\n \"name\": \"egtest2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"routing2\",\r\n \"etag\": \"AAAAAAil9Kw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"egtest2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egtest2\",\r\n \"endpoint\": \"sb://iothub-ns-egtest2-2268122-8f19fdeb73.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"test\",\r\n \"value\": \"test\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n },\r\n {\r\n \"key\": \"testagain\",\r\n \"value\": \"testagain\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest\",\r\n \"name\": \"test-hub-rest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAipuyQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"test-hub-rest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"test-hub-rest\",\r\n \"endpoint\": \"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c\",\r\n \"name\": \"testMsgEnrichmentfkx2le3c\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"testMsg\",\r\n \"etag\": \"AAAAAAiquF0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testMsgEnrichmentfkx2le3c.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"testmsgenrichmentfkx2le3c\",\r\n \"endpoint\": \"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"c09328cb-8421-4dc6-aade-8dddcc75e0ed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"be2db98d-a24e-4ec0-bbee-43d9a10a2529\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/RmandaMsgEnrichhubrfwt5aot\",\r\n \"name\": \"RmandaMsgEnrichhubrfwt5aot\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAirMrY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RmandaMsgEnrichhubrfwt5aot.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 8,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\"\r\n ],\r\n \"path\": \"rmandamsgenrichhubrfwt5ao\",\r\n \"endpoint\": \"sb://iothub-ns-rmandamsge-2286254-478b0f0fa8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespacerfwt5aot.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuerfwt5aot\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"e23f40dc-563a-4b5b-a6f4-c554f1baaedd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostoragerfwt5aot;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"46093080-e09e-4068-b78f-6dbf5ac7475c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"k1\",\r\n \"value\": \"v1\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/RmandaMsgEnrichhubrfwt5aot77df4rls\",\r\n \"name\": \"RmandaMsgEnrichhubrfwt5aot77df4rls\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAirPVY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RmandaMsgEnrichhubrfwt5aot77df4rls.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 8,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\"\r\n ],\r\n \"path\": \"rmandamsgenrichhubrfwt5ao\",\r\n \"endpoint\": \"sb://iothub-ns-rmandamsge-2286305-13ceef3317.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespace77df4rls.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueue77df4rls\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"0f092f8b-b43f-4583-9e91-31dcdeb8ac3d\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostorage77df4rls;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"abd659fd-8317-4b37-9ddc-71d770d3ed1e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/rmContosoTestHub\",\r\n \"name\": \"rmContosoTestHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAirTmg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rmContosoTestHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 8,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\"\r\n ],\r\n \"path\": \"rmcontosotesthub\",\r\n \"endpoint\": \"sb://iothub-ns-rmcontosot-2286356-7ff9e25046.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://rmcontososbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueue\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"c3037285-c2d1-4035-9c7e-77fecafef9c3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=rmcontosostorage;AccountKey=****\",\r\n \"containerName\": \"rmcontosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"511b5321-72d2-42a5-92fb-9de64491833d\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test\",\r\n \"name\": \"ns-hub-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAir/zU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-hub-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-hub-test\",\r\n \"endpoint\": \"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2\",\r\n \"name\": \"ns-test-east-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAisBno=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-test-east-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-test-east-2\",\r\n \"endpoint\": \"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/testtesthub\",\r\n \"name\": \"testtesthub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"test\": \"456\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAiv3kU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testtesthub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testtesthub\",\r\n \"endpoint\": \"sb://iothub-ns-testtesthu-2290237-4d30dfdb86.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/xqiothub1009\",\r\n \"name\": \"xqiothub1009\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAiv/0s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"xqiothub1009.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"xqiothub1009\",\r\n \"endpoint\": \"sb://iothub-ns-xqiothub10-2290531-9368c85411.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing\",\r\n \"name\": \"xinyiz-distributedtracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"xinyiz-distributedtracing\",\r\n \"etag\": \"AAAAAAiyDXc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"xinyiz-distributedtracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"xinyiz-distributedtracing\",\r\n \"endpoint\": \"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2\",\r\n \"name\": \"eriwand2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eriwan-d2\",\r\n \"etag\": \"AAAAAAiyKSs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eriwand2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eriwand2\",\r\n \"endpoint\": \"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub\",\r\n \"name\": \"dexterm-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAjdiP0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dexterm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2321449-7c2f08ade8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"adc82a8a-b065-47cd-b1a2-efe496ea368e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dexternroutes\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmo-routing-t1\",\r\n \"name\": \"prashmo-routing-t1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"prashmo-rg\",\r\n \"etag\": \"AAAAAAjYp4M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"prashmo-routing-t1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"prashmo-routing-t1\",\r\n \"endpoint\": \"sb://iothub-ns-prashmo-ro-2328340-33877204b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate\",\r\n \"name\": \"dexterm-testiothubcreate\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAjd3CE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2\",\r\n \"name\": \"dexterm-testiothubcreate2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAjd/5M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate2\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanga\",\r\n \"name\": \"affanga\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAqNIHc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"1\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"1.0.0.1\"\r\n }\r\n ],\r\n \"hostName\": \"affanga.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanga\",\r\n \"endpoint\": \"sb://iothub-ns-affanga-85919-dbb37074f2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dmpypinoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affandarrg;SharedAccessKey=****;EntityPath=dmpypindesktop-iothub-q-acmediscov-6-3edb84555f\",\r\n \"name\": \"asdfsadfasdf\",\r\n \"id\": \"baa5b0c2-e893-4e3b-9122-eb722430eb17\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"stg1\",\r\n \"id\": \"f2f26f9d-72a2-4409-b4fd-24b0fd4e9afb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/IlieEdgeTest\",\r\n \"name\": \"IlieEdgeTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXQNps=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"IlieEdgeTest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilieedgetest\",\r\n \"endpoint\": \"sb://iothub-ns-ilieedgete-193665-3774bf2376.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/andbuc/providers/Microsoft.Devices/IotHubs/andbuc-test-move\",\r\n \"name\": \"andbuc-test-move\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"andbuc\",\r\n \"etag\": \"AAAAAAWTtWo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"andbuc-test-move.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"andbuc-test-move\",\r\n \"endpoint\": \"sb://iothub-ns-andbuc-tes-271231-875dddaed9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanbackuphub\",\r\n \"name\": \"affanbackuphub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"application\": \"test1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAhqeRY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanbackuphub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanbackuphub\",\r\n \"endpoint\": \"sb://iothub-ns-affanbacku-722541-e6d3b9e3d3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://affandtfx.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affandarrg;SharedAccessKey=****;EntityPath=testhub/orchestrator\",\r\n \"name\": \"ContosoServiceBusQueueEndpoint\",\r\n \"id\": \"308835b4-e0b8-4d43-a2fb-7ffc6bfe3540\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 69,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"pnpBlobEndpoint\",\r\n \"id\": \"17872352-e01c-4ecb-a158-cca9e6f3016a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 23068672,\r\n \"encoding\": \"json\",\r\n \"name\": \"alltelemetrytostorage\",\r\n \"id\": \"7a4da087-6e99-4db4-abef-d6abd924238b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 64,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"blobstorageavro\",\r\n \"id\": \"c5890768-106a-472e-9c80-e064a4a3c8c7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanmain\",\r\n \"name\": \"affanmain\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAqMvy0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Japan East\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanmain.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanmain\",\r\n \"endpoint\": \"sb://iothub-ns-affanmain-723068-75224a8e64.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurkuloneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affandarrg;SharedAccessKey=****;EntityPath=routingqueue2\",\r\n \"name\": \"asdfasdf\",\r\n \"id\": \"cd733813-8215-466c-a2e3-82f3c3cc816e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap\",\r\n \"name\": \"vishalg-euap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAp9oUE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-euap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"vishalg-euap\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2\",\r\n \"name\": \"slowqueue2\",\r\n \"id\": \"ac634d18-4fb5-42e2-9885-25fd4bfae4a0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest\",\r\n \"name\": \"deadqueue\",\r\n \"id\": \"88d2a443-b1a0-4f6b-9815-a88d7414cc77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 10485760,\r\n \"encoding\": \"json\",\r\n \"name\": \"jsontestep\",\r\n \"id\": \"247a72ba-e596-4dc5-be1f-7989711dc273\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"jsonstorageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"jsontestep\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"deadroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"deadqueue\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affancentral\",\r\n \"name\": \"affancentral\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAlJHsI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affancentral.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affancentral\",\r\n \"endpoint\": \"sb://iothub-ns-affancentr-1228701-2801317b54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affancentral;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"ep1ep1\",\r\n \"id\": \"828f52fb-8cb4-4b84-9929-8ffa86bac0f7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 17\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas\",\r\n \"name\": \"iot-hub-rezas\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAlJaVc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1608616-9da2f04507.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://event-hubs-standard-rezas.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iot-hub-rezas;SharedAccessKey=****;EntityPath=eh1\",\r\n \"name\": \"event-hubs-standard-rezas\",\r\n \"id\": \"c4210f6d-f6fe-4d61-924e-0be5ddf70900\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"iot-hub-rezas\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"62b37eac-2503-4bdd-80cc-76346a7678a6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas3;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas3\",\r\n \"id\": \"f81f07fb-1c10-4b97-9763-690da645ddec\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas2;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas2-endpoint\",\r\n \"id\": \"eff70371-a0c8-41c5-98ad-a29d5e25cbe3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezaswestus;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezaswestus-endpoint\",\r\n \"id\": \"fab1399d-2c78-4eb4-be2e-a0481c72386a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"owner\",\r\n \"value\": \"reza\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ]\r\n },\r\n {\r\n \"key\": \"building.floor.room\",\r\n \"value\": \"v2\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin-notifications\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas2-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas2-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezaswestus-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezaswestus-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"event-hubs-standard-rezas-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"event-hubs-standard-rezas\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezasgen2;AccountKey=****\",\r\n \"containerName\": \"test\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1\",\r\n \"name\": \"sapan-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAq51Oo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event1\",\r\n \"id\": \"0cb9d371-2160-4856-b24c-9049ff5d6142\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event2\",\r\n \"id\": \"3a496cdb-ae86-46a7-9180-c964451f1758\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event3\",\r\n \"id\": \"643f5500-49a5-44ea-8ade-f3477923cc40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event4\",\r\n \"id\": \"7e3c0327-cfb4-484d-976e-664da962312f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"container\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage12345\",\r\n \"id\": \"d02112ca-f71f-4459-a7f6-349e8e7492c6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage1234\",\r\n \"id\": \"61dc387d-7406-459c-8218-ac0c95063d43\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"R1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"event4\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT17H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"P1DT3H\",\r\n \"maxDeliveryCount\": 40\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 31,\r\n \"defaultTtlAsIso8601\": \"PT11H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT17H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/kapil-test/providers/Microsoft.Devices/IotHubs/kapilbuildtest\",\r\n \"name\": \"kapilbuildtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"kapil-test\",\r\n \"etag\": \"AAAAAAqVIBs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapilbuildtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapilbuildtest\",\r\n \"endpoint\": \"sb://iothub-ns-kapilbuild-1609938-ede937158c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"name\",\r\n \"value\": \"kapil\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n },\r\n {\r\n \"key\": \"city\",\r\n \"value\": \"redmond\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"device\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub\",\r\n \"name\": \"RoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAArGM6g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"routingrunnerscenariotest\",\r\n \"endpoint\": \"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"id\": \"c22345cc-ab68-4a29-8d48-503bf6748e39\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"id\": \"67c9b119-ac04-44d9-a9e5-10c644f19dad\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"name\": \"RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"id\": \"a7d8dfd6-7f7d-4665-ad4f-cf24ce4e872b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****\",\r\n \"containerName\": \"routingrunsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"routingrunsttestac\",\r\n \"id\": \"58b37445-965a-4bbc-8c83-961709b471bf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub\",\r\n \"name\": \"EgMgmtTest-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EgMgmtTest-rg\",\r\n \"etag\": \"AAAAAAbHiRc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EgMgmtTest-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egmgmttest-hub\",\r\n \"endpoint\": \"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/icm115773862/providers/Microsoft.Devices/IotHubs/icm115773862\",\r\n \"name\": \"icm115773862\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"icm115773862\",\r\n \"etag\": \"AAAAAAXgyIk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"France Central\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"France South\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"icm115773862.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"icm115773862\",\r\n \"endpoint\": \"sb://iothub-ns-icm1157738-1635035-4a1220ecb2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=icm115773862;AccountKey=****\",\r\n \"containerName\": \"icm115773862\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"icm115773862\",\r\n \"id\": \"26137a13-4e15-4854-a247-23fd60a7740f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"icm115773862\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"icm115773862\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"icm115773862\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub\",\r\n \"name\": \"shishu-canry-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAqVC2A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1635078-9a79c62305.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/device-stream-infra-rg/providers/Microsoft.Devices/IotHubs/alekseynortheurope\",\r\n \"name\": \"alekseynortheurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"device-stream-infra-rg\",\r\n \"etag\": \"AAAAAAenCeU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseynortheurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseynortheurope\",\r\n \"endpoint\": \"sb://iothub-ns-alekseynor-1636439-2947969b98.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515\",\r\n \"name\": \"sachinctest0515\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXYLKg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"iothub-ehub-sachinctes-1643033-7c1999b13e\",\r\n \"endpoint\": \"sb://ihsuprodbyres085dednamespace.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"F1\",\r\n \"tier\": \"Free\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm\",\r\n \"name\": \"sachinctest0515arm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXhVAc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515arm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sachinctest0515arm\",\r\n \"endpoint\": \"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub\",\r\n \"name\": \"ea-genhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-gen\",\r\n \"etag\": \"AAAAAAXd9uc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-genhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-genhub\",\r\n \"endpoint\": \"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub\",\r\n \"name\": \"askhura-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tagkey\": \"tagvalue\",\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAAAq5wdA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"testrule14\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"192.168.1.234\"\r\n }\r\n ],\r\n \"hostName\": \"askhura-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 2,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****\",\r\n \"containerName\": \"hirachyshishu1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"aaaaaa\",\r\n \"id\": \"d8ab0b4d-faeb-4557-a976-92a64413ae10\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"teststorage\",\r\n \"id\": \"4aa10acb-a1a5-41d0-a7b3-fea883eff17e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=askhurateststorage;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"askhurastorageendpoint\",\r\n \"id\": \"5c4447db-f05c-4fd5-a66e-2a95456eb2dd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"askhura-test-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest3\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"iliesendpoint\",\r\n \"id\": \"9fe146f2-9a47-419d-a424-ab83e11a7e49\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=askhurateststorage;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"icm-test\",\r\n \"id\": \"e4916c29-ebe3-450f-9f8f-fc87ef1a241e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"askhura-test-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=askhurateststorage;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"testchromsamesite\",\r\n \"id\": \"109f7177-3c30-48c5-881e-995c55c61f31\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"askhura-test-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"aaaaaa\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"icmtest\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"teststorage\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****\",\r\n \"containerName\": \"alklindesktopgvd664qrouting\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT6H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest\",\r\n \"name\": \"maxgpgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maxgtest\",\r\n \"etag\": \"AAAAAAX8J3c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxgpgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"maxgpgtest\",\r\n \"endpoint\": \"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test\",\r\n \"name\": \"skintali-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"skintali-test\",\r\n \"etag\": \"AAAAAAp9oWs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"skintali-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"skintali-test\",\r\n \"endpoint\": \"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub\",\r\n \"name\": \"asrudra-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsfdsa\": \"ssdfgh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAjZURY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudra-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5\",\r\n \"name\": \"sapan-iot-5\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAoE1II=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-5.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-5\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1762324-d9980eff44.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting\",\r\n \"name\": \"manualFailoverTesting\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAArKhk8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manualFailoverTesting.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manualfailovertesting\",\r\n \"endpoint\": \"sb://iothub-ns-manualfail-1762885-200fa81e25.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub\",\r\n \"name\": \"eliohub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpEVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2\",\r\n \"name\": \"eliohub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpMdA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub2\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manul-failover\",\r\n \"name\": \"manul-failover\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAqZRvk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manul-failover.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manul-failover\",\r\n \"endpoint\": \"sb://iothub-ns-manul-fail-1770469-3dfeea4c38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudratesthub\",\r\n \"name\": \"asrudratesthub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAqf6fA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudratesthub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudratesthub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudrates-1770836-658e50b9f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://evansimdes-iothub-ns-acmediscov-1-1cc252c635.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_asrudratesthub;SharedAccessKey=****;EntityPath=acmediscoveryevansimdesk\",\r\n \"name\": \"dhdhhdh\",\r\n \"id\": \"5e683255-9e79-4564-83ae-142b9c71604b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://evansimdes-iothub-ns-acmediscov-1-1cc252c635.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_asrudratesthub;SharedAccessKey=****;EntityPath=acmediscoveryevansimdesk\",\r\n \"name\": \"dsfghjret\",\r\n \"id\": \"807876d9-55b6-4098-aee6-724c753a535c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://evansimdes-iothub-ns-acmediscov-1-1cc252c635.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_asrudratesthub;SharedAccessKey=****;EntityPath=acmediscoveryevansimdesk\",\r\n \"name\": \"ewrtyuio\",\r\n \"id\": \"c98f884a-cf28-4560-a84d-be40af82fd0f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ertyuiop\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"dhdhhdh\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/demo-asrudra\",\r\n \"name\": \"demo-asrudra\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ8cKs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"demo-asrudra.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"demo-asrudra\",\r\n \"endpoint\": \"sb://iothub-ns-demo-asrud-1782619-30ec784c08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm\",\r\n \"name\": \"dmpypin-cdm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAp9oYU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dmpypin-cdm\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/westcentralus-rg/providers/Microsoft.Devices/IotHubs/ankurwestcus\",\r\n \"name\": \"ankurwestcus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"westcentralus-rg\",\r\n \"etag\": \"AAAAAAn56EE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ankurwestcus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ankurwestcus\",\r\n \"endpoint\": \"sb://iothub-ns-ankurwestc-1792419-67d0616a9c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest\",\r\n \"name\": \"cymgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"cymgtest\",\r\n \"etag\": \"AAAAAAaKJ90=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"cymgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cymgtest\",\r\n \"endpoint\": \"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon\",\r\n \"name\": \"testopsmon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jichangrg\",\r\n \"etag\": \"AAAAAAaKY5k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testopsmon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testopsmon\",\r\n \"endpoint\": \"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-centraluseuap\",\r\n \"name\": \"iot-hub-rezas-centraluseuap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAp9oUY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-centraluseuap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-centraluseu\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1812185-14d8e75e5a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt\",\r\n \"name\": \"dmpypin-cdm-pvt\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAp9oZM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm-pvt.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dmpypin-cdm-pvt\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-central-delme/providers/Microsoft.Devices/IotHubs/ea-trustbox\",\r\n \"name\": \"ea-trustbox\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-central-delme\",\r\n \"etag\": \"AAAAAAbEgkE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-trustbox.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"ea-trustbox\",\r\n \"endpoint\": \"sb://iothub-ns-ea-trustbo-1845736-4cbb218ecb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub\",\r\n \"name\": \"infra-edge-validation-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"infradeploymentverification\",\r\n \"etag\": \"AAAAAAbILsQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"infra-edge-validation-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"infra-edge-validation-hub\",\r\n \"endpoint\": \"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test\",\r\n \"name\": \"ailn-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ailn-test\",\r\n \"etag\": \"AAAAAAp9oZY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ailn-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ailn-test\",\r\n \"endpoint\": \"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub-2\",\r\n \"name\": \"shishu-canry-hub-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAp9obE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub-2\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1942357-5075f879b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://sbpremium.servicebus.windows.net:5671/;SharedAccessKeyName=SasKey;SharedAccessKey=****;EntityPath=004675routingtopic0\",\r\n \"name\": \"mysb\",\r\n \"id\": \"d49156ab-ce4b-4017-b7b2-9f1bbc32f1e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishualias.servicebus.windows.net:5671/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=****;EntityPath=topic3\",\r\n \"name\": \"mysb2\",\r\n \"id\": \"701bbcf5-faf7-4b99-8343-e7f17850402f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub-2;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"eventhub0813\",\r\n \"id\": \"c6aa81d4-1d5e-42a8-9120-9cfd6cc6c277\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"a95bf69b-1424-4f10-bd30-d8b1b7eea5ba\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"020725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"02adls2endpoint0725\",\r\n \"id\": \"4ff85ce6-3e8f-45c8-a5c8-4e66c512deca\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"newendpointtest\",\r\n \"id\": \"5c9a656e-0c0e-4268-920b-55ecaa10790e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishu072701;AccountKey=****\",\r\n \"containerName\": \"0729container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0729shishuEP1\",\r\n \"id\": \"718a4cb6-8bcd-4b0c-8557-60fb022c0ca6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"1204container\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"eventchangeendpoint\",\r\n \"id\": \"311099f9-b3ba-4b33-8865-4b56d184e419\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"1204container\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storageendpointcontainer\",\r\n \"id\": \"17b44836-747f-4a0e-a555-6d9f6e024f5b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"sbroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"mysb2\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifechangeroutes\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventchangeendpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifechangeroute2\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storageendpointcontainer\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test\",\r\n \"name\": \"maga-canary-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAp9oZo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-canary-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-canary-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"service-bus\",\r\n \"id\": \"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"service-bus\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus\",\r\n \"name\": \"postame20190730-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jl20190730\",\r\n \"etag\": \"AAAAAAdJH7A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"postame20190730-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"postame20190730-westus\",\r\n \"endpoint\": \"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-canary-1\",\r\n \"name\": \"sapan-canary-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAp9oR4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-canary-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-canary-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cana-1971304-ab572002b9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/reshant-test/providers/Microsoft.Devices/IotHubs/ReshantMetricMissing\",\r\n \"name\": \"ReshantMetricMissing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"reshant-test\",\r\n \"etag\": \"AAAAAAdtsHA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ReshantMetricMissing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"reshantmetricmissing\",\r\n \"endpoint\": \"sb://iothub-ns-reshantmet-2000600-659799590e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test\",\r\n \"name\": \"shsin-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXRVc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1\",\r\n \"name\": \"shsin-test1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXdow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test1\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari\",\r\n \"name\": \"lanhikari\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"hubhikari\",\r\n \"etag\": \"AAAAAAe9VGY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lanhikari.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lanhikari\",\r\n \"endpoint\": \"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test\",\r\n \"name\": \"maga-walmart-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhTfw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-walmart-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-walmart-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"maga-sb\",\r\n \"id\": \"25db0af1-47e1-4c05-b496-3fe45b8a30fd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"maga-sb\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves\",\r\n \"name\": \"ea-enclaves\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-enclaves\",\r\n \"etag\": \"AAAAAAfO818=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-enclaves.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-enclaves\",\r\n \"endpoint\": \"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash\",\r\n \"name\": \"edgeBugBash\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rkessler\",\r\n \"etag\": \"AAAAAAf2lW0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"edgeBugBash.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"edgebugbash\",\r\n \"endpoint\": \"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary\",\r\n \"name\": \"vishalg-canary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAp9oSY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-canary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"vishalg-canary\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"abcdefg\",\r\n \"id\": \"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"abc\",\r\n \"value\": \"abcdefgh\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"abc = 'def'\",\r\n \"endpointNames\": [\r\n \"abcdefg\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"testtwin\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$twin.tags.location = 'seattle'\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus\",\r\n \"name\": \"iot-hub-rezas-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAhrj9A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-westus\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"test\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps\",\r\n \"name\": \"sansun-ps\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sansunRG\",\r\n \"etag\": \"AAAAAAg4RxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Korea South\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sansun-ps.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sansun-ps\",\r\n \"endpoint\": \"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub\",\r\n \"name\": \"distributed-tracing-iothub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAp9oYw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"distributed-tracing-iothub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"distributed-tracing-iothu\",\r\n \"endpoint\": \"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"iothub-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage\",\r\n \"id\": \"d6e50290-1aec-4054-b93c-a74a461019da\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"5b637589-2dc6-4fd5-a2e0-20cd34e53380\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"json-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"json-format\",\r\n \"id\": \"bd08b5d6-e414-4c15-b00e-47ebd0233137\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"json-format\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing\",\r\n \"name\": \"rentu-test-distributed-tracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAp9oaY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rentu-test-distributed-tracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rentu-test-distributed-tr\",\r\n \"endpoint\": \"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=buildineventhubstorage;AccountKey=****\",\r\n \"containerName\": \"routing-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"routing-to-storage\",\r\n \"id\": \"2faa9116-b355-4575-bec1-edfc8dec7a66\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"test-routing\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"routing-to-storage\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"buildin\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub\",\r\n \"name\": \"alekseyhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"aleksey\",\r\n \"etag\": \"AAAAAAiHDhY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseyhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseyhub\",\r\n \"endpoint\": \"sb://iothub-ns-alekseyhub-2253333-51cec71543.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-neurope\",\r\n \"name\": \"iot-hub-rezas-neurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiLUkQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-neurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-neurope\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2257359-b58ac968ca.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-seasia\",\r\n \"name\": \"iot-hub-rezas-seasia\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiLXmU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-seasia.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-seasia\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2257406-5a1fbe3b7a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/routing2/providers/Microsoft.Devices/IotHubs/kapilegtest\",\r\n \"name\": \"kapilegtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"routing2\",\r\n \"etag\": \"AAAAAAiTU8g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapilegtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapilegtest\",\r\n \"endpoint\": \"sb://iothub-ns-kapilegtes-2264763-7437699ffe.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"hubname\",\r\n \"value\": \"$iothubname\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n },\r\n {\r\n \"key\": \"author\",\r\n \"value\": \"kapil\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/routing2/providers/Microsoft.Devices/IotHubs/egtest2\",\r\n \"name\": \"egtest2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"routing2\",\r\n \"etag\": \"AAAAAAp9oX4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"egtest2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egtest2\",\r\n \"endpoint\": \"sb://iothub-ns-egtest2-2268122-8f19fdeb73.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"test\",\r\n \"value\": \"test\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n },\r\n {\r\n \"key\": \"testagain\",\r\n \"value\": \"testagain\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest\",\r\n \"name\": \"test-hub-rest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAipuyQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"test-hub-rest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"test-hub-rest\",\r\n \"endpoint\": \"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c\",\r\n \"name\": \"testMsgEnrichmentfkx2le3c\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"testMsg\",\r\n \"etag\": \"AAAAAAlKF78=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testMsgEnrichmentfkx2le3c.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"testmsgenrichmentfkx2le3c\",\r\n \"endpoint\": \"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"c09328cb-8421-4dc6-aade-8dddcc75e0ed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"be2db98d-a24e-4ec0-bbee-43d9a10a2529\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/RmandaMsgEnrichhubrfwt5aot\",\r\n \"name\": \"RmandaMsgEnrichhubrfwt5aot\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAlKF8U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RmandaMsgEnrichhubrfwt5aot.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 8,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\"\r\n ],\r\n \"path\": \"rmandamsgenrichhubrfwt5ao\",\r\n \"endpoint\": \"sb://iothub-ns-rmandamsge-2286254-478b0f0fa8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespacerfwt5aot.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuerfwt5aot\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"e23f40dc-563a-4b5b-a6f4-c554f1baaedd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostoragerfwt5aot;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"46093080-e09e-4068-b78f-6dbf5ac7475c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"k1\",\r\n \"value\": \"v1\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/RmandaMsgEnrichhubrfwt5aot77df4rls\",\r\n \"name\": \"RmandaMsgEnrichhubrfwt5aot77df4rls\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAlKGH4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RmandaMsgEnrichhubrfwt5aot77df4rls.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 8,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\"\r\n ],\r\n \"path\": \"rmandamsgenrichhubrfwt5ao\",\r\n \"endpoint\": \"sb://iothub-ns-rmandamsge-2286305-13ceef3317.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespace77df4rls.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueue77df4rls\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"0f092f8b-b43f-4583-9e91-31dcdeb8ac3d\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostorage77df4rls;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"abd659fd-8317-4b37-9ddc-71d770d3ed1e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/rmContosoTestHub\",\r\n \"name\": \"rmContosoTestHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAlKGH0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rmContosoTestHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 8,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\"\r\n ],\r\n \"path\": \"rmcontosotesthub\",\r\n \"endpoint\": \"sb://iothub-ns-rmcontosot-2286356-7ff9e25046.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://rmcontososbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueue\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"c3037285-c2d1-4035-9c7e-77fecafef9c3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=rmcontosostorage;AccountKey=****\",\r\n \"containerName\": \"rmcontosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"511b5321-72d2-42a5-92fb-9de64491833d\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test\",\r\n \"name\": \"ns-hub-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAp9oVI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-hub-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-hub-test\",\r\n \"endpoint\": \"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2\",\r\n \"name\": \"ns-test-east-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAp9oZ4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-test-east-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-test-east-2\",\r\n \"endpoint\": \"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/testtesthub\",\r\n \"name\": \"testtesthub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"test\": \"456\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAlI6I8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testtesthub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testtesthub\",\r\n \"endpoint\": \"sb://iothub-ns-testtesthu-2290237-4d30dfdb86.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/xqiothub1009\",\r\n \"name\": \"xqiothub1009\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAiv/0s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"xqiothub1009.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"xqiothub1009\",\r\n \"endpoint\": \"sb://iothub-ns-xqiothub10-2290531-9368c85411.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing\",\r\n \"name\": \"xinyiz-distributedtracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"xinyiz-distributedtracing\",\r\n \"etag\": \"AAAAAAp9oV4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"xinyiz-distributedtracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"xinyiz-distributedtracing\",\r\n \"endpoint\": \"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2\",\r\n \"name\": \"eriwand2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eriwan-d2\",\r\n \"etag\": \"AAAAAAp9oYc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eriwand2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eriwand2\",\r\n \"endpoint\": \"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub\",\r\n \"name\": \"dexterm-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAj3niw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dexterm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"adc82a8a-b065-47cd-b1a2-efe496ea368e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dexternroutes\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"dextern-iot-hub-edgedevice\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$twin.tags.dexteredgedevice.troubleshoot=\\\"true\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmo-routing-t1\",\r\n \"name\": \"prashmo-routing-t1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"prashmo-rg\",\r\n \"etag\": \"AAAAAAjYp4M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"prashmo-routing-t1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"prashmo-routing-t1\",\r\n \"endpoint\": \"sb://iothub-ns-prashmo-ro-2328340-33877204b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate\",\r\n \"name\": \"dexterm-testiothubcreate\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAjd3CE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2\",\r\n \"name\": \"dexterm-testiothubcreate2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAjd/5M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate2\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope\",\r\n \"name\": \"dexterm-hub-northeurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dextermrgneurope\",\r\n \"etag\": \"AAAAAAknA9M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub-northeurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-hub-northeurope\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"de045626-d820-4873-b411-629ec8bda685\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dextermepforneuropehub\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/aajollyIothub/providers/Microsoft.Devices/IotHubs/aajollyiothubtest\",\r\n \"name\": \"aajollyiothubtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"aajollyIothub\",\r\n \"etag\": \"AAAAAAlvdts=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"aajollyiothubtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"aajollyiothubtest\",\r\n \"endpoint\": \"sb://iothub-ns-aajollyiot-2375457-7338fb6be1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shsinpc-iothub-ns-acmeconfig-6-4d813f539b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_aajollyiothubtest;SharedAccessKey=****;EntityPath=acmeconfigurationsshsinpc\",\r\n \"name\": \"aakashehns\",\r\n \"id\": \"09e419db-19ef-416e-b686-473e2a786719\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/icm154349939/providers/Microsoft.Devices/IotHubs/icm154349939\",\r\n \"name\": \"icm154349939\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"icm154349939\",\r\n \"etag\": \"AAAAAAkhkZw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"icm154349939.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"icm154349939\",\r\n \"endpoint\": \"sb://iothub-ns-icm1543499-2399113-17e8c872de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jlian-real-life-sol-2/providers/Microsoft.Devices/IotHubs/iothub-vxohk\",\r\n \"name\": \"iothub-vxohk\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"IotSuiteType\": \"RemoteMonitoringV2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jlian-real-life-sol-2\",\r\n \"etag\": \"AAAAAAllFF4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iothub-vxohk.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iothub-vxohk\",\r\n \"endpoint\": \"sb://iothub-ns-iothub-vxo-2462244-5cc20f60b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace-vxohk.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-vxohk;SharedAccessKey=****;EntityPath=eventhub-vxohk\",\r\n \"name\": \"DeviceNotifications\",\r\n \"id\": \"bf844d52-9189-4162-b1a3-b79a59dc7132\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"jlian-real-life-sol-2\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"TwinRoute\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"LifecycleRoute\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shdatta/providers/Microsoft.Devices/IotHubs/shreejatest\",\r\n \"name\": \"shreejatest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shdatta\",\r\n \"etag\": \"AAAAAAl7KBU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shreejatest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shreejatest\",\r\n \"endpoint\": \"sb://iothub-ns-shreejates-2482779-221a4631b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01\",\r\n \"name\": \"csharp-iotuap-eastus-01\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"csharp-iotuap-eastus-01\",\r\n \"etag\": \"AAAAAAmQDtc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"csharp-iotuap-eastus-01.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"csharp-iotuap-eastus-01\",\r\n \"endpoint\": \"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****\",\r\n \"containerName\": \"aziotbld\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/alexander-distributed-tracing/providers/Microsoft.Devices/IotHubs/alexander-distributed-tracing-iothub\",\r\n \"name\": \"alexander-distributed-tracing-iothub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"alexander-distributed-tracing\",\r\n \"etag\": \"AAAAAAp9oWw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alexander-distributed-tracing-iothub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alexander-distributed-tra\",\r\n \"endpoint\": \"sb://iothub-ns-alexander-2617306-99175a2cda.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=alexanderdistristorage;AccountKey=****\",\r\n \"containerName\": \"telemetry\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"cfc18e0e-f752-4f12-a48f-62725e261a72\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"alexander-distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"build-in-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storage-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rmandatesthub/providers/Microsoft.Devices/IotHubs/rmandacbnhub\",\r\n \"name\": \"rmandacbnhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rmandatesthub\",\r\n \"etag\": \"AAAAAAp9oWg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rmandacbnhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rmandacbnhub\",\r\n \"endpoint\": \"sb://iothub-ns-rmandacbnh-2651754-fab84b9973.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-2\",\r\n \"name\": \"iot-hub-rezas-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAqThG4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-2\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2737097-301191f4a1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-3\",\r\n \"name\": \"iot-hub-rezas-3\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAqUWC0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-3.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-3\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2737878-fe35dbf751.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-4\",\r\n \"name\": \"iot-hub-rezas-4\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAArExxo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"allow-rezas-ubuntu\",\r\n \"action\": \"Accept\",\r\n \"ipMask\": \"52.173.87.70\"\r\n },\r\n {\r\n \"filterName\": \"dropall\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"0.0.0.0/0\"\r\n }\r\n ],\r\n \"hostName\": \"iot-hub-rezas-4.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-4\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2743274-59badaa753.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/test/providers/Microsoft.Devices/IotHubs/cutom-endpoint-test\",\r\n \"name\": \"cutom-endpoint-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"test\",\r\n \"etag\": \"AAAAAAq5tUE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"sadfghjkl;\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"0.0.0.0/0\"\r\n }\r\n ],\r\n \"hostName\": \"cutom-endpoint-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cutom-endpoint-test\",\r\n \"endpoint\": \"sb://iothub-ns-cutom-endp-2748319-bceb727ecf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://evansimdes-iothub-ns-acmediscov-1-1cc252c635.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_cutom-endpoint-test;SharedAccessKey=****;EntityPath=acmediscoveryevansimdesk\",\r\n \"name\": \"asdfjkfdkldf\",\r\n \"id\": \"2d7826c3-4d3a-430a-910f-b7c76c87ea8e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://evansimdes-iothub-ns-acmediscov-1-1cc252c635.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_cutom-endpoint-test;SharedAccessKey=****;EntityPath=acmediscoveryevansimdesk\",\r\n \"name\": \"sdfklertyui\",\r\n \"id\": \"9b9f09ae-a58e-467b-afe2-6497212c4725\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://evansimdes-iothub-ns-acmediscov-1-1cc252c635.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_cutom-endpoint-test;SharedAccessKey=****;EntityPath=acmediscoveryevansimdesk\",\r\n \"name\": \"ertyuiopadfghh\",\r\n \"id\": \"a4f40df4-23b2-4cde-bba1-66c433880215\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://shreejades-iothub-ns-acmeconfig-5-9f5cde3a3d.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_cutom-endpoint-test;SharedAccessKey=****;EntityPath=acmeconfigurationsshreeja-operationmonitoring\",\r\n \"name\": \"ewrtfhwdsfkl\",\r\n \"id\": \"f769dc9a-7f6c-4be7-be48-1f3b7cbc3a77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://desktoprmt-iothub-ns-acmemiscop-5-fa462c152b.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_cutom-endpoint-test;SharedAccessKey=****;EntityPath=acmemiscoperationsdesktop-operationmonitoring\",\r\n \"name\": \"asssdeekjejkjkwe\",\r\n \"id\": \"d1dbb8a3-aa38-4d67-9b6d-6e3dde0ae970\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"rtgu\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/juan-test/providers/Microsoft.Devices/IotHubs/juan-test-3\",\r\n \"name\": \"juan-test-3\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"juan-test\",\r\n \"etag\": \"AAAAAAqk8ck=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"juan-test-3.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"juan-test-3\",\r\n \"endpoint\": \"sb://iothub-ns-juan-test-2752845-822775f9c0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=juanstorageaccount;AccountKey=****\",\r\n \"containerName\": \"newone\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"JuanStorageEndpoint\",\r\n \"id\": \"40611846-a092-4c50-b504-6f5c05c20ab1\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"juan-test\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-5\",\r\n \"name\": \"iot-hub-rezas-5\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAq5bII=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"ActivationFailed\",\r\n \"provisioningState\": \"Failed\",\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EdgeVM-RG/providers/Microsoft.Devices/IotHubs/EdgeVM-Hub\",\r\n \"name\": \"EdgeVM-Hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EdgeVM-RG\",\r\n \"etag\": \"AAAAAAq7IZo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EdgeVM-Hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"edgevm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-edgevm-hub-2773335-48d7155673.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT5S\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest\",\r\n \"name\": \"mchai-repartitiontest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"repartitiontest\",\r\n \"etag\": \"AAAAAArLzN4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"mchai-repartitiontest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"mchai-repartitiontest\",\r\n \"endpoint\": \"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps9672?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzOTY3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps4732?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNDczMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0d107f9-6b24-4c6b-a0aa-865dcb45168d"
+ "61e559be-0ec3-4091-8b99-c3f06bdd0488"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,13 +159,13 @@
"1199"
],
"x-ms-request-id": [
- "abb80ef9-0a60-4eea-98bd-29fc9f780769"
+ "be18cd82-a665-4fbb-8d23-89fe9d646851"
],
"x-ms-correlation-request-id": [
- "abb80ef9-0a60-4eea-98bd-29fc9f780769"
+ "be18cd82-a665-4fbb-8d23-89fe9d646851"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193359Z:abb80ef9-0a60-4eea-98bd-29fc9f780769"
+ "WESTUS:20200122T223851Z:be18cd82-a665-4fbb-8d23-89fe9d646851"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -174,7 +174,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:33:59 GMT"
+ "Wed, 22 Jan 2020 22:38:50 GMT"
],
"Content-Length": [
"165"
@@ -186,25 +186,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672\",\r\n \"name\": \"ps9672\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732\",\r\n \"name\": \"ps4732\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2NzM1P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0NzI5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"kafkaEnabled\": false\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "227c88fa-90b6-4aed-93e9-355ac9819ab7"
+ "f7f5b16c-e45d-43a4-9533-1da7766235a0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
],
"Content-Type": [
@@ -222,23 +222,23 @@
"no-cache"
],
"x-ms-request-id": [
- "3ba55253-6976-49ac-95d3-01494285b5cc_M0SN1_M0SN1"
+ "0afe4c88-1574-49f9-91fa-82285fa0cded_M3SN1_M3SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "49"
+ ],
"Server": [
"Service-Bus-Resource-Provider/SN1",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
"x-ms-correlation-request-id": [
- "22b6956d-dced-448b-972e-3602c870dbc8"
+ "dbd47e9d-d363-4bc9-a38e-4e78e141108c"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T193404Z:22b6956d-dced-448b-972e-3602c870dbc8"
+ "WESTUS:20200122T223856Z:dbd47e9d-d363-4bc9-a38e-4e78e141108c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -247,7 +247,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:34:03 GMT"
+ "Wed, 22 Jan 2020 22:38:56 GMT"
],
"Content-Length": [
"640"
@@ -259,19 +259,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735\",\r\n \"name\": \"eventHub6735\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub6735\",\r\n \"createdAt\": \"2019-10-21T19:34:01.163Z\",\r\n \"updatedAt\": \"2019-10-21T19:34:01.163Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub6735.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729\",\r\n \"name\": \"eventHub4729\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub4729\",\r\n \"createdAt\": \"2020-01-22T22:38:52.823Z\",\r\n \"updatedAt\": \"2020-01-22T22:38:52.823Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub4729.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2NzM1P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0NzI5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
]
},
@@ -283,7 +283,7 @@
"no-cache"
],
"x-ms-request-id": [
- "fe19f09e-6a7a-4adb-bf34-aee8b0c9d94d_M0SN1_M0SN1"
+ "8ad473d9-ea50-45b8-a923-791720d7b91c_M2SN1_M2SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -293,13 +293,13 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11998"
],
"x-ms-correlation-request-id": [
- "f3b8b2bc-c84c-4fde-8c54-fd2cb44d9bba"
+ "10b22fa5-e7d6-4d42-a7fa-24dad0335d56"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T193434Z:f3b8b2bc-c84c-4fde-8c54-fd2cb44d9bba"
+ "WESTUS:20200122T223926Z:10b22fa5-e7d6-4d42-a7fa-24dad0335d56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -308,7 +308,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:34:33 GMT"
+ "Wed, 22 Jan 2020 22:39:26 GMT"
],
"Content-Length": [
"640"
@@ -320,19 +320,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735\",\r\n \"name\": \"eventHub6735\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub6735\",\r\n \"createdAt\": \"2019-10-21T19:34:01.163Z\",\r\n \"updatedAt\": \"2019-10-21T19:34:01.163Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub6735.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729\",\r\n \"name\": \"eventHub4729\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub4729\",\r\n \"createdAt\": \"2020-01-22T22:38:52.823Z\",\r\n \"updatedAt\": \"2020-01-22T22:38:52.823Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub4729.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2NzM1P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0NzI5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
]
},
@@ -344,7 +344,7 @@
"no-cache"
],
"x-ms-request-id": [
- "28fcdfe8-f151-4df2-8025-4d09ca6b028d_M0SN1_M0SN1"
+ "d7ee58a2-7fa9-47c9-8816-32a45aff7953_M2SN1_M2SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -354,13 +354,13 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11997"
],
"x-ms-correlation-request-id": [
- "52931c7b-7539-47cd-8701-98a163e42cf0"
+ "ec71e203-c8e6-4eff-9b60-2e07bc69ba76"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T193504Z:52931c7b-7539-47cd-8701-98a163e42cf0"
+ "WESTUS:20200122T223956Z:ec71e203-c8e6-4eff-9b60-2e07bc69ba76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -369,7 +369,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:35:04 GMT"
+ "Wed, 22 Jan 2020 22:39:55 GMT"
],
"Content-Length": [
"638"
@@ -381,25 +381,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735\",\r\n \"name\": \"eventHub6735\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub6735\",\r\n \"createdAt\": \"2019-10-21T19:34:01.163Z\",\r\n \"updatedAt\": \"2019-10-21T19:34:48.423Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub6735.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729\",\r\n \"name\": \"eventHub4729\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub4729\",\r\n \"createdAt\": \"2020-01-22T22:38:52.823Z\",\r\n \"updatedAt\": \"2020-01-22T22:39:43.917Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub4729.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735/eventhubs/ps1800?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2NzM1L2V2ZW50aHVicy9wczE4MDA/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729/eventhubs/ps7567?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0NzI5L2V2ZW50aHVicy9wczc1Njc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd8ca793-f81f-4bea-862a-c82ea873b1b5"
+ "86e45c62-28b0-4906-91b0-a9bb75ceef9b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
],
"Content-Type": [
@@ -417,7 +417,7 @@
"no-cache"
],
"x-ms-request-id": [
- "77602497-1c87-47b2-b3a7-aedd11790d37_M0SN1_M0SN1"
+ "70305457-5de6-4764-9fbe-b9fd79170b97_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -427,13 +427,13 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "81e7f0e5-26bb-4d63-a683-f2c4da26d515"
+ "b6f3e04f-c901-40c9-95c4-031d248b7058"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T193522Z:81e7f0e5-26bb-4d63-a683-f2c4da26d515"
+ "WESTUS:20200122T224014Z:b6f3e04f-c901-40c9-95c4-031d248b7058"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -442,10 +442,10 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:35:21 GMT"
+ "Wed, 22 Jan 2020 22:40:13 GMT"
],
"Content-Length": [
- "420"
+ "419"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -454,25 +454,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735/eventhubs/ps1800\",\r\n \"name\": \"ps1800\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-10-21T19:35:21.207Z\",\r\n \"updatedAt\": \"2019-10-21T19:35:21.623Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729/eventhubs/ps7567\",\r\n \"name\": \"ps7567\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-01-22T22:40:13.36Z\",\r\n \"updatedAt\": \"2020-01-22T22:40:13.747Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735/eventhubs/ps1800/authorizationRules/ps1757?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2NzM1L2V2ZW50aHVicy9wczE4MDAvYXV0aG9yaXphdGlvblJ1bGVzL3BzMTc1Nz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729/eventhubs/ps7567/authorizationRules/ps4195?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0NzI5L2V2ZW50aHVicy9wczc1NjcvYXV0aG9yaXphdGlvblJ1bGVzL3BzNDE5NT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59a76215-0775-47ef-949d-90a678cdc42a"
+ "659cb95b-58ea-4916-9b33-c636a38a8f86"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
],
"Content-Type": [
@@ -490,7 +490,7 @@
"no-cache"
],
"x-ms-request-id": [
- "233f00b8-3599-41ef-8391-a97b24bc22d3_M0SN1_M0SN1"
+ "09c05ceb-f55b-46f4-88c9-4af5e33c0109_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -500,13 +500,13 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "61e4ac7d-4b48-4166-b6bd-0e3f1aaf1a0e"
+ "2fae8c5b-a325-4206-b432-730a25af1980"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T193522Z:61e4ac7d-4b48-4166-b6bd-0e3f1aaf1a0e"
+ "WESTUS:20200122T224014Z:2fae8c5b-a325-4206-b432-730a25af1980"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -515,7 +515,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:35:22 GMT"
+ "Wed, 22 Jan 2020 22:40:14 GMT"
],
"Content-Length": [
"325"
@@ -527,25 +527,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735/eventhubs/ps1800/authorizationRules/ps1757\",\r\n \"name\": \"ps1757\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729/eventhubs/ps7567/authorizationRules/ps4195\",\r\n \"name\": \"ps4195\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.EventHub/namespaces/eventHub6735/eventhubs/ps1800/authorizationRules/ps1757/ListKeys?api-version=2017-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2NzM1L2V2ZW50aHVicy9wczE4MDAvYXV0aG9yaXphdGlvblJ1bGVzL3BzMTc1Ny9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.EventHub/namespaces/eventHub4729/eventhubs/ps7567/authorizationRules/ps4195/ListKeys?api-version=2017-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0NzI5L2V2ZW50aHVicy9wczc1NjcvYXV0aG9yaXphdGlvblJ1bGVzL3BzNDE5NS9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63128023-28ac-4836-ac6b-a0c16dedb8f1"
+ "2e585894-fc50-4c8f-a330-6164727430f2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0"
]
},
@@ -557,7 +557,7 @@
"no-cache"
],
"x-ms-request-id": [
- "cf24bf18-11d3-4d7a-9afd-ec273a51de59_M0SN1_M0SN1"
+ "3d652348-4249-494e-85d9-b2376c383d31_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
@@ -570,10 +570,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "2e9c6da5-cdd3-4d20-8bab-14f21a1c0c28"
+ "438808e2-0094-48d0-9d85-0084947925cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20191021T193523Z:2e9c6da5-cdd3-4d20-8bab-14f21a1c0c28"
+ "WESTUS:20200122T224015Z:438808e2-0094-48d0-9d85-0084947925cc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -582,7 +582,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:35:22 GMT"
+ "Wed, 22 Jan 2020 22:40:14 GMT"
],
"Content-Length": [
"514"
@@ -594,25 +594,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=Z9Pd9La3x2bhJtkZ9nYuLZPUwLduVy7EqAVpZKG+2DI=;EntityPath=ps1800\",\r\n \"primaryKey\": \"lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=\",\r\n \"secondaryKey\": \"Z9Pd9La3x2bhJtkZ9nYuLZPUwLduVy7EqAVpZKG+2DI=\",\r\n \"keyName\": \"ps1757\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=RNkb8db9xSe4NoNQ74LTKp+5y4fbGnYnblb5JzgZZYM=;EntityPath=ps7567\",\r\n \"primaryKey\": \"GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=\",\r\n \"secondaryKey\": \"RNkb8db9xSe4NoNQ74LTKp+5y4fbGnYnblb5JzgZZYM=\",\r\n \"keyName\": \"ps4195\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2b9bcfa-e5b6-467a-9140-7a05abfe6c24"
+ "969dfe44-71d7-49cf-a32b-af704815ce07"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -630,7 +630,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGYxYmY5YjMtNzVjZi00M2M0LWI2YTItYjg0MTRmNGJmNWI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NjZGM5NjItYzFhYy00MjhhLWFhZjktOTNkNDVkODE3ZTkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -639,13 +639,13 @@
"4999"
],
"x-ms-request-id": [
- "c3d6ab62-77b0-49e2-9e4c-52dd0214a2e9"
+ "f176f389-2c05-424a-a071-deb0d7cb14eb"
],
"x-ms-correlation-request-id": [
- "c3d6ab62-77b0-49e2-9e4c-52dd0214a2e9"
+ "f176f389-2c05-424a-a071-deb0d7cb14eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193539Z:c3d6ab62-77b0-49e2-9e4c-52dd0214a2e9"
+ "WESTUS:20200122T224032Z:f176f389-2c05-424a-a071-deb0d7cb14eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -654,7 +654,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:35:38 GMT"
+ "Wed, 22 Jan 2020 22:40:32 GMT"
],
"Content-Length": [
"1201"
@@ -666,25 +666,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84f1d4cd-0937-48c1-96ff-9566d730e317"
+ "090db8cc-fbe2-40d7-bec9-8056a80847f8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -702,7 +702,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJhN2NlOGEtYWM2OC00MTcyLWIwNjktZjBlN2EyNzcwNGM3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzMyNWE2NDktYWRmYi00NDI1LWFhN2UtYTAxYzJlMWU4ODg4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -711,13 +711,13 @@
"4998"
],
"x-ms-request-id": [
- "c86bf3a0-840e-45a0-aaa1-432f85a2ede1"
+ "3f004217-9e0e-4261-89b8-70726d0b3ea3"
],
"x-ms-correlation-request-id": [
- "c86bf3a0-840e-45a0-aaa1-432f85a2ede1"
+ "3f004217-9e0e-4261-89b8-70726d0b3ea3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193749Z:c86bf3a0-840e-45a0-aaa1-432f85a2ede1"
+ "WESTUS:20200122T224244Z:3f004217-9e0e-4261-89b8-70726d0b3ea3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -726,7 +726,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:49 GMT"
+ "Wed, 22 Jan 2020 22:42:44 GMT"
],
"Content-Length": [
"4436"
@@ -738,25 +738,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"secondaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:37:27 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"secondaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:23 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju6xI=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmmhk=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8cc25b8-8452-424b-a434-e654169de3a8"
+ "8f0bff8f-867a-49d3-91a4-3dc1859d0cac"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -774,7 +774,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDI3OTU3YTQtMTI0My00NzRiLTg1NTItOTkxOWE2NjBlNzY5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjQ2YWQ5NTUtN2NmNi00NzlkLWFlZTktM2ExZDEwMzQ5OTU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -783,13 +783,13 @@
"4997"
],
"x-ms-request-id": [
- "343d572d-aae5-4e9c-ae8e-090e2dc7bfdd"
+ "102a84c7-57b3-42f7-b274-7c8a94078297"
],
"x-ms-correlation-request-id": [
- "343d572d-aae5-4e9c-ae8e-090e2dc7bfdd"
+ "102a84c7-57b3-42f7-b274-7c8a94078297"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193823Z:343d572d-aae5-4e9c-ae8e-090e2dc7bfdd"
+ "WESTUS:20200122T224319Z:102a84c7-57b3-42f7-b274-7c8a94078297"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -798,7 +798,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:23 GMT"
+ "Wed, 22 Jan 2020 22:43:19 GMT"
],
"Content-Length": [
"4436"
@@ -810,25 +810,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6xI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:00 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmhk=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:42:51 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju62w=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"giYYix5AEWIGaS2jwFZqrFkWgAzblKOKT0DUErDP5sk=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmmro=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"BXU9M6vuQE+fN5N9F46kODA4trplxqoCYvvV92zcQgM=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f92b614-90ad-48f9-8de3-dabe5b730425"
+ "9e0e36c9-a233-494d-ab84-8e88d5cbe3a0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -846,7 +846,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTUwNWRlNTctMTZjMS00ODM5LTlkZTYtZDJjMjUyYjIxZTQ3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYzViOWU5NDItMWQxNy00MmVkLTk5Y2MtNWYxNjk4NzU4NDQx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -855,13 +855,13 @@
"4996"
],
"x-ms-request-id": [
- "91c16746-f820-421e-8204-6abc89bc6580"
+ "df38f965-869f-48c7-ac24-e9868ff89975"
],
"x-ms-correlation-request-id": [
- "91c16746-f820-421e-8204-6abc89bc6580"
+ "df38f965-869f-48c7-ac24-e9868ff89975"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193858Z:91c16746-f820-421e-8204-6abc89bc6580"
+ "WESTUS:20200122T224354Z:df38f965-869f-48c7-ac24-e9868ff89975"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -870,7 +870,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:57 GMT"
+ "Wed, 22 Jan 2020 22:43:53 GMT"
],
"Content-Length": [
"4436"
@@ -882,25 +882,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju62w=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"giYYix5AEWIGaS2jwFZqrFkWgAzblKOKT0DUErDP5sk=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:38:32 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmro=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"BXU9M6vuQE+fN5N9F46kODA4trplxqoCYvvV92zcQgM=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:43:23 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju6/k=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmm0Q=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67678a67-567f-4f30-99fc-8815dfd81374"
+ "586608fa-3a2a-467b-a1cf-c98414af217e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -918,7 +918,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNGUwYThjOTgtOWU2Mi00ZjgyLTgwMWYtNWE4MmJhODI4YmYw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM4ZDk4NGItYTJjNC00ZWIxLWFkNjYtZWQ5ZGVmOWM2MGM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -927,13 +927,13 @@
"4995"
],
"x-ms-request-id": [
- "dc62ce2d-e969-4df9-b917-30ddc6b43571"
+ "104f67ae-31a2-416c-b9ab-df23b74a3ae3"
],
"x-ms-correlation-request-id": [
- "dc62ce2d-e969-4df9-b917-30ddc6b43571"
+ "104f67ae-31a2-416c-b9ab-df23b74a3ae3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193931Z:dc62ce2d-e969-4df9-b917-30ddc6b43571"
+ "WESTUS:20200122T224428Z:104f67ae-31a2-416c-b9ab-df23b74a3ae3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -942,7 +942,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:31 GMT"
+ "Wed, 22 Jan 2020 22:44:27 GMT"
],
"Content-Length": [
"4263"
@@ -954,25 +954,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6/k=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:08 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm0Q=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:01 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju7DM=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmm/g=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c23113f-1981-442f-b353-94cbf315ec1f"
+ "e0f04a7f-bdcc-40c7-9578-360b86800b6a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -990,7 +990,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2Y1NDc1OGYtNjllNS00MWNjLTg1MjgtNjJkYWFiMDM3ODhm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2Y1MjhkNGYtMjQyNy00MDljLWJkN2QtOTAyNmRkY2MyODgy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -999,13 +999,13 @@
"4994"
],
"x-ms-request-id": [
- "38143cad-d734-4eac-a103-2e35a21e566b"
+ "9df065e4-efc7-4b96-9ee6-eb812ec7df0d"
],
"x-ms-correlation-request-id": [
- "38143cad-d734-4eac-a103-2e35a21e566b"
+ "9df065e4-efc7-4b96-9ee6-eb812ec7df0d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194006Z:38143cad-d734-4eac-a103-2e35a21e566b"
+ "WESTUS:20200122T224503Z:9df065e4-efc7-4b96-9ee6-eb812ec7df0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1014,7 +1014,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:05 GMT"
+ "Wed, 22 Jan 2020 22:45:02 GMT"
],
"Content-Length": [
"4266"
@@ -1026,25 +1026,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7DM=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:39:40 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm/g=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:44:33 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju7KY=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmnIc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a2e8d5f-64a4-4f1f-bec5-2d26449e8d39"
+ "57a8ab19-4664-49d8-bbc9-27dca662d20c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -1062,7 +1062,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmQ1OWM3ZDMtODA5OS00NDNhLWIwMzAtMDIyZjJhMDA4MWUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTg4ZmU1MTItMWE1Yi00Y2RiLWFiZDQtNGE2MWJlYTY0NmZm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1071,13 +1071,13 @@
"4993"
],
"x-ms-request-id": [
- "bbc1bc25-59a2-4209-a49a-f311b564ca7e"
+ "08284c43-8092-480b-addf-0363da2cec74"
],
"x-ms-correlation-request-id": [
- "bbc1bc25-59a2-4209-a49a-f311b564ca7e"
+ "08284c43-8092-480b-addf-0363da2cec74"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194040Z:bbc1bc25-59a2-4209-a49a-f311b564ca7e"
+ "WESTUS:20200122T224537Z:08284c43-8092-480b-addf-0363da2cec74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1086,7 +1086,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:40 GMT"
+ "Wed, 22 Jan 2020 22:45:36 GMT"
],
"Content-Length": [
"4266"
@@ -1098,25 +1098,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7KY=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:17 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnIc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:10 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju7Oo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmnlI=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0d913a6-136a-4bf6-83b8-b9a2112fb0c1"
+ "4aaa96e5-e12b-453f-8c7a-d3c8fa8e813a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -1134,7 +1134,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmIwMGFjOTgtOWExMC00NzRmLTg2YmItNmQ0M2EzYTVmZmY3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWRhYjdhZTktYWY4Ni00NTcxLWI3M2UtNjVjMTMxOGMwMjdh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1143,13 +1143,13 @@
"4992"
],
"x-ms-request-id": [
- "368e3f04-3142-4974-8c6c-becdc4542cab"
+ "ee317ab7-4408-4d1c-84c5-8d3417cfaa3c"
],
"x-ms-correlation-request-id": [
- "368e3f04-3142-4974-8c6c-becdc4542cab"
+ "ee317ab7-4408-4d1c-84c5-8d3417cfaa3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194114Z:368e3f04-3142-4974-8c6c-becdc4542cab"
+ "WESTUS:20200122T224612Z:ee317ab7-4408-4d1c-84c5-8d3417cfaa3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1158,7 +1158,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:14 GMT"
+ "Wed, 22 Jan 2020 22:46:11 GMT"
],
"Content-Length": [
"4266"
@@ -1170,25 +1170,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7Oo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:40:53 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net/;SharedAccessKeyName=ps1757;SharedAccessKey=lCTU3IraUBmNJb3+Jih6gAagTk5xS4YVUJC5Jrwfkgs=;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnlI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:45:45 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net/;SharedAccessKeyName=ps4195;SharedAccessKey=GvGkQ1usT76jlQukSaFgENllWRQ3fAF5CjanFCzTRcw=;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju7TE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmoGM=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbd6e83c-3d8b-4a61-af46-2e784e527a60"
+ "411b041e-5af5-4bf4-8847-1b6875b25de1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -1206,7 +1206,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2QzNTg4NmQtZDk2My00MmRjLWI2NjQtNTczN2IyZGE2Nzcx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODFmNTUwMTUtMzJmNS00YzFkLWJiNzUtODZlNDc3ZjZmOGJk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1215,13 +1215,13 @@
"4991"
],
"x-ms-request-id": [
- "adc5cd35-93dc-4826-845f-0a21accdc3c1"
+ "dd6ab783-b09c-4d85-882d-4af22ce81db7"
],
"x-ms-correlation-request-id": [
- "adc5cd35-93dc-4826-845f-0a21accdc3c1"
+ "dd6ab783-b09c-4d85-882d-4af22ce81db7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194149Z:adc5cd35-93dc-4826-845f-0a21accdc3c1"
+ "WESTUS:20200122T224646Z:dd6ab783-b09c-4d85-882d-4af22ce81db7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1230,7 +1230,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:48 GMT"
+ "Wed, 22 Jan 2020 22:46:45 GMT"
],
"Content-Length": [
"4034"
@@ -1242,25 +1242,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7TE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:21 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoGM=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:19 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju7bQ=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmoWU=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57c19aa4-4afb-47c2-ae0c-db9921677811"
+ "d6848ab1-f1bb-4e45-816b-48ca23192dfd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -1278,7 +1278,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjA3ODYzMzAtNWIzYy00ZDk5LWI2YTEtMjFhOWUxY2I0ODhk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWJiY2RiNDUtZTFmZi00NDIzLTljMzItNjUyODY3MTg2MmNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1287,13 +1287,13 @@
"4990"
],
"x-ms-request-id": [
- "93f4172e-38e8-416a-8e13-a6d26108175c"
+ "3f383515-23ca-46cc-b5b1-430bfa6059ae"
],
"x-ms-correlation-request-id": [
- "93f4172e-38e8-416a-8e13-a6d26108175c"
+ "3f383515-23ca-46cc-b5b1-430bfa6059ae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194222Z:93f4172e-38e8-416a-8e13-a6d26108175c"
+ "WESTUS:20200122T224720Z:3f383515-23ca-46cc-b5b1-430bfa6059ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1302,7 +1302,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:21 GMT"
+ "Wed, 22 Jan 2020 22:47:20 GMT"
],
"Content-Length": [
"4141"
@@ -1314,25 +1314,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7bQ=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:41:58 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoWU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:46:52 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"etag\": \"AAAAAAju7qc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"etag\": \"AAAAAArmojo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbfe43ac-37fb-4779-a4da-105d015816ee"
+ "af7d5fe2-7cda-490c-9eac-342dd5aacc2c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -1350,7 +1350,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2VjMjcxZmItMTRlNC00YmEwLWFlNGItZGNiNTA1YjgwOWQ1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZDYxYjUtOGQxYi00YWMyLTllMzYtM2M5OTc1YTEzNTlh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1359,13 +1359,13 @@
"4989"
],
"x-ms-request-id": [
- "9f4aaab8-ce8a-4dcd-a9df-17dc0af61c2d"
+ "b1ea5e05-2d04-48cc-9868-11c2d083c126"
],
"x-ms-correlation-request-id": [
- "9f4aaab8-ce8a-4dcd-a9df-17dc0af61c2d"
+ "b1ea5e05-2d04-48cc-9868-11c2d083c126"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194257Z:9f4aaab8-ce8a-4dcd-a9df-17dc0af61c2d"
+ "WESTUS:20200122T224755Z:b1ea5e05-2d04-48cc-9868-11c2d083c126"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1374,7 +1374,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:56 GMT"
+ "Wed, 22 Jan 2020 22:47:54 GMT"
],
"Content-Length": [
"4140"
@@ -1386,19 +1386,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7qc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-14aacc34-965d-46cf-a9c1-eb98a874b8a0-iothub\",\r\n \"PrimaryKey\": \"rIX4QSAGFw26x/sevwRLcelh0prvD237r277t11cVMw=\",\r\n \"SecondaryKey\": \"DFoH9OVBqVzPzvsxWFiwlGC50pu4oTe6tkZOCm1ZCxc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-fd138ae5-0465-4ee7-911d-7dc278273848-iothub\",\r\n \"PrimaryKey\": \"iR/RGdDCqdP+YhO8/2Xkn3JSQ0TYBImdQ+D6P51X+xM=\",\r\n \"SecondaryKey\": \"X80sxZ71yQGCgmIb4uDtzogXjlNZU108l/OMC+KCzV8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"SecondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"SecondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\",\r\n \"ModifiedTime\": \"Mon, 21 Oct 2019 19:42:39 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmojo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-d4afe1c9-ecc7-4bd9-8c37-7e6be858a292-iothub\",\r\n \"PrimaryKey\": \"AcOKamU8Joy7hWBVk4UjHCtFc+TRw/2ImV7jsfbwK1U=\",\r\n \"SecondaryKey\": \"oTWJ7Y485OlqPSuhlgv2SzSW64DDBXa+iE/P0xnvLX8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-51986bad-cd00-4ce1-8e0f-10f6d31ebd35-iothub\",\r\n \"PrimaryKey\": \"RuSg2viY43603IqO/3s0pIvJE6zmguGAC16xHSWPak0=\",\r\n \"SecondaryKey\": \"jjPud7/nJlRzsmu01sIUcX9MRmwPlqy84OC88Yk/9ME=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"SecondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"SecondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\",\r\n \"ModifiedTime\": \"Wed, 22 Jan 2020 22:47:25 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGYxYmY5YjMtNzVjZi00M2M0LWI2YTItYjg0MTRmNGJmNWI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdZeFltWTVZak10TnpWalppMDBNMk0wTFdJMllUSXRZamcwTVRSbU5HSm1OV0k1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NjZGM5NjItYzFhYy00MjhhLWFhZjktOTNkNDVkODE3ZTkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJOalpHTTVOakl0WXpGaFl5MDBNamhoTFdGaFpqa3RPVE5rTkRWa09ERTNaVGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1409,20 +1409,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
"x-ms-request-id": [
- "c7687354-db66-48f2-bda7-82524be6e634"
+ "10507690-3b62-4012-a50a-c7c9880f75fe"
],
"x-ms-correlation-request-id": [
- "c7687354-db66-48f2-bda7-82524be6e634"
+ "10507690-3b62-4012-a50a-c7c9880f75fe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193609Z:c7687354-db66-48f2-bda7-82524be6e634"
+ "WESTUS:20200122T224103Z:10507690-3b62-4012-a50a-c7c9880f75fe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1431,7 +1431,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:36:09 GMT"
+ "Wed, 22 Jan 2020 22:41:02 GMT"
],
"Content-Length": [
"20"
@@ -1447,15 +1447,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGYxYmY5YjMtNzVjZi00M2M0LWI2YTItYjg0MTRmNGJmNWI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdZeFltWTVZak10TnpWalppMDBNMk0wTFdJMllUSXRZamcwTVRSbU5HSm1OV0k1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NjZGM5NjItYzFhYy00MjhhLWFhZjktOTNkNDVkODE3ZTkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJOalpHTTVOakl0WXpGaFl5MDBNamhoTFdGaFpqa3RPVE5rTkRWa09ERTNaVGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1466,20 +1466,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
"x-ms-request-id": [
- "92a60645-5da4-45cf-a5f4-9eaf22d1e06d"
+ "dc7ce7ab-ca92-4180-8462-dfbb82949a05"
],
"x-ms-correlation-request-id": [
- "92a60645-5da4-45cf-a5f4-9eaf22d1e06d"
+ "dc7ce7ab-ca92-4180-8462-dfbb82949a05"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193639Z:92a60645-5da4-45cf-a5f4-9eaf22d1e06d"
+ "WESTUS:20200122T224133Z:dc7ce7ab-ca92-4180-8462-dfbb82949a05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1488,7 +1488,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:36:38 GMT"
+ "Wed, 22 Jan 2020 22:41:33 GMT"
],
"Content-Length": [
"20"
@@ -1504,15 +1504,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGYxYmY5YjMtNzVjZi00M2M0LWI2YTItYjg0MTRmNGJmNWI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdZeFltWTVZak10TnpWalppMDBNMk0wTFdJMllUSXRZamcwTVRSbU5HSm1OV0k1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NjZGM5NjItYzFhYy00MjhhLWFhZjktOTNkNDVkODE3ZTkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJOalpHTTVOakl0WXpGaFl5MDBNamhoTFdGaFpqa3RPVE5rTkRWa09ERTNaVGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1523,20 +1523,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
"x-ms-request-id": [
- "9dbe339b-effe-4ccf-9419-0029baca34f9"
+ "ae4793e5-29dc-4702-8791-dee17bf4d839"
],
"x-ms-correlation-request-id": [
- "9dbe339b-effe-4ccf-9419-0029baca34f9"
+ "ae4793e5-29dc-4702-8791-dee17bf4d839"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193709Z:9dbe339b-effe-4ccf-9419-0029baca34f9"
+ "WESTUS:20200122T224203Z:ae4793e5-29dc-4702-8791-dee17bf4d839"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1545,7 +1545,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:09 GMT"
+ "Wed, 22 Jan 2020 22:42:03 GMT"
],
"Content-Length": [
"20"
@@ -1561,15 +1561,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGYxYmY5YjMtNzVjZi00M2M0LWI2YTItYjg0MTRmNGJmNWI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdZeFltWTVZak10TnpWalppMDBNMk0wTFdJMllUSXRZamcwTVRSbU5HSm1OV0k1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NjZGM5NjItYzFhYy00MjhhLWFhZjktOTNkNDVkODE3ZTkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJOalpHTTVOakl0WXpGaFl5MDBNamhoTFdGaFpqa3RPVE5rTkRWa09ERTNaVGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1584,16 +1584,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11993"
],
"x-ms-request-id": [
- "36053355-a18f-4ca3-b0fd-07cc1272a23b"
+ "658f504f-1b3b-44a3-96ff-7bd175bb93be"
],
"x-ms-correlation-request-id": [
- "36053355-a18f-4ca3-b0fd-07cc1272a23b"
+ "658f504f-1b3b-44a3-96ff-7bd175bb93be"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193740Z:36053355-a18f-4ca3-b0fd-07cc1272a23b"
+ "WESTUS:20200122T224233Z:658f504f-1b3b-44a3-96ff-7bd175bb93be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1602,7 +1602,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:40 GMT"
+ "Wed, 22 Jan 2020 22:42:33 GMT"
],
"Content-Length": [
"22"
@@ -1618,15 +1618,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1641,16 +1641,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11992"
],
"x-ms-request-id": [
- "a7871914-ecfa-4356-9a33-f428eed0ca57"
+ "bb096f75-8a81-4556-9203-1350e19661c2"
],
"x-ms-correlation-request-id": [
- "a7871914-ecfa-4356-9a33-f428eed0ca57"
+ "bb096f75-8a81-4556-9203-1350e19661c2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193740Z:a7871914-ecfa-4356-9a33-f428eed0ca57"
+ "WESTUS:20200122T224234Z:bb096f75-8a81-4556-9203-1350e19661c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1659,7 +1659,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:40 GMT"
+ "Wed, 22 Jan 2020 22:42:33 GMT"
],
"Content-Length": [
"1761"
@@ -1671,25 +1671,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28d13421-4a9c-4499-8f60-86fac1830fac"
+ "195e7201-9266-4eff-bee0-9f68c4736fc2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1704,16 +1704,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11991"
],
"x-ms-request-id": [
- "63244629-884f-4652-958a-322149004541"
+ "337f307c-1e8b-42ef-93db-ba48026c3f44"
],
"x-ms-correlation-request-id": [
- "63244629-884f-4652-958a-322149004541"
+ "337f307c-1e8b-42ef-93db-ba48026c3f44"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193740Z:63244629-884f-4652-958a-322149004541"
+ "WESTUS:20200122T224234Z:337f307c-1e8b-42ef-93db-ba48026c3f44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1722,7 +1722,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:40 GMT"
+ "Wed, 22 Jan 2020 22:42:34 GMT"
],
"Content-Length": [
"1761"
@@ -1734,25 +1734,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b165019c-d060-4728-b8d8-9a515b03355f"
+ "41ccb932-552a-437c-a086-19e99dab13bf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1767,16 +1767,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11989"
],
"x-ms-request-id": [
- "c14d3290-84aa-48a1-a05f-3e37b52db211"
+ "d2dffe95-e085-44d4-a262-6c2651db01cc"
],
"x-ms-correlation-request-id": [
- "c14d3290-84aa-48a1-a05f-3e37b52db211"
+ "d2dffe95-e085-44d4-a262-6c2651db01cc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193741Z:c14d3290-84aa-48a1-a05f-3e37b52db211"
+ "WESTUS:20200122T224235Z:d2dffe95-e085-44d4-a262-6c2651db01cc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1785,7 +1785,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:41 GMT"
+ "Wed, 22 Jan 2020 22:42:34 GMT"
],
"Content-Length": [
"1761"
@@ -1797,25 +1797,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "affb9b39-8754-42d1-adad-6db4e27882f3"
+ "d66130de-1bd8-4f76-b1e5-24f987181374"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1830,16 +1830,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11984"
],
"x-ms-request-id": [
- "a3b80c49-d942-40d4-8915-01f44ea31327"
+ "e3c098f8-f34b-456d-94d6-6a0a9a6c62db"
],
"x-ms-correlation-request-id": [
- "a3b80c49-d942-40d4-8915-01f44ea31327"
+ "e3c098f8-f34b-456d-94d6-6a0a9a6c62db"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193743Z:a3b80c49-d942-40d4-8915-01f44ea31327"
+ "WESTUS:20200122T224237Z:e3c098f8-f34b-456d-94d6-6a0a9a6c62db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1848,7 +1848,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:43 GMT"
+ "Wed, 22 Jan 2020 22:42:37 GMT"
],
"Content-Length": [
"1761"
@@ -1860,25 +1860,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7f46884-93d6-4379-8233-40c82feef2ee"
+ "0f07a19c-2e6f-41bf-bf36-2cdd87b97124"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1893,16 +1893,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11983"
],
"x-ms-request-id": [
- "1d0ce197-0c3a-4266-aed8-ab8a1d5b399d"
+ "1571b822-144b-432b-a95b-b021e589fef9"
],
"x-ms-correlation-request-id": [
- "1d0ce197-0c3a-4266-aed8-ab8a1d5b399d"
+ "1571b822-144b-432b-a95b-b021e589fef9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193744Z:1d0ce197-0c3a-4266-aed8-ab8a1d5b399d"
+ "WESTUS:20200122T224238Z:1571b822-144b-432b-a95b-b021e589fef9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1911,7 +1911,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:44 GMT"
+ "Wed, 22 Jan 2020 22:42:37 GMT"
],
"Content-Length": [
"1761"
@@ -1923,25 +1923,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e200e498-2c56-45a1-9728-2cd3cf84c9f0"
+ "36c411e5-47b5-4b0c-b8ef-8e6883505841"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -1956,16 +1956,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11978"
],
"x-ms-request-id": [
- "bc8ec61b-aaec-4715-9105-81a8b341665a"
+ "6f9160c5-c793-41fb-a3a5-a748632069a5"
],
"x-ms-correlation-request-id": [
- "bc8ec61b-aaec-4715-9105-81a8b341665a"
+ "6f9160c5-c793-41fb-a3a5-a748632069a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193747Z:bc8ec61b-aaec-4715-9105-81a8b341665a"
+ "WESTUS:20200122T224241Z:6f9160c5-c793-41fb-a3a5-a748632069a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1974,7 +1974,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:46 GMT"
+ "Wed, 22 Jan 2020 22:42:41 GMT"
],
"Content-Length": [
"1761"
@@ -1986,19 +1986,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2013,16 +2013,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11976"
],
"x-ms-request-id": [
- "b42cc1db-a846-461a-a6f1-1b7524d36c34"
+ "2614fe9b-22e7-46aa-b825-60e24481e5d9"
],
"x-ms-correlation-request-id": [
- "b42cc1db-a846-461a-a6f1-1b7524d36c34"
+ "2614fe9b-22e7-46aa-b825-60e24481e5d9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193820Z:b42cc1db-a846-461a-a6f1-1b7524d36c34"
+ "WESTUS:20200122T224315Z:2614fe9b-22e7-46aa-b825-60e24481e5d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2031,7 +2031,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:19 GMT"
+ "Wed, 22 Jan 2020 22:43:15 GMT"
],
"Content-Length": [
"1761"
@@ -2043,25 +2043,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6xI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmhk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac6833c0-37bf-4c40-a502-b255a706aff7"
+ "e582f5cc-0c17-41cc-adfa-5f69bd35066a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2076,16 +2076,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11975"
],
"x-ms-request-id": [
- "fc46db8f-d768-4f2a-a4bd-48720b9d13ed"
+ "9c7b6988-1924-4681-a634-9ab0e15b92ba"
],
"x-ms-correlation-request-id": [
- "fc46db8f-d768-4f2a-a4bd-48720b9d13ed"
+ "9c7b6988-1924-4681-a634-9ab0e15b92ba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193821Z:fc46db8f-d768-4f2a-a4bd-48720b9d13ed"
+ "WESTUS:20200122T224316Z:9c7b6988-1924-4681-a634-9ab0e15b92ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2094,7 +2094,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:20 GMT"
+ "Wed, 22 Jan 2020 22:43:16 GMT"
],
"Content-Length": [
"1761"
@@ -2106,19 +2106,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6xI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmhk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2133,16 +2133,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11973"
],
"x-ms-request-id": [
- "c84c916b-4d55-4609-82ea-f54a680d623e"
+ "ba1e2f53-9ea3-4547-833c-8c13e3f8e155"
],
"x-ms-correlation-request-id": [
- "c84c916b-4d55-4609-82ea-f54a680d623e"
+ "ba1e2f53-9ea3-4547-833c-8c13e3f8e155"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193854Z:c84c916b-4d55-4609-82ea-f54a680d623e"
+ "WESTUS:20200122T224350Z:ba1e2f53-9ea3-4547-833c-8c13e3f8e155"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2151,7 +2151,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:53 GMT"
+ "Wed, 22 Jan 2020 22:43:49 GMT"
],
"Content-Length": [
"1761"
@@ -2163,25 +2163,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju62w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmro=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1a13fd6-5067-4651-806a-cb4d2c838c5a"
+ "88388c03-7db7-49df-8c37-14b350301c33"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2196,16 +2196,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11972"
],
"x-ms-request-id": [
- "dbb7ac53-0c8c-4fd8-b8df-274e8661b04e"
+ "a91bfb21-ebad-4600-aa34-e5867ed458e5"
],
"x-ms-correlation-request-id": [
- "dbb7ac53-0c8c-4fd8-b8df-274e8661b04e"
+ "a91bfb21-ebad-4600-aa34-e5867ed458e5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193855Z:dbb7ac53-0c8c-4fd8-b8df-274e8661b04e"
+ "WESTUS:20200122T224351Z:a91bfb21-ebad-4600-aa34-e5867ed458e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2214,7 +2214,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:54 GMT"
+ "Wed, 22 Jan 2020 22:43:50 GMT"
],
"Content-Length": [
"1761"
@@ -2226,19 +2226,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju62w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmro=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2253,16 +2253,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11970"
],
"x-ms-request-id": [
- "c4fed7e2-b2d6-4d63-8696-3c4c16cfdef4"
+ "c5aab845-de8b-48a8-9e24-bdfc30fcd080"
],
"x-ms-correlation-request-id": [
- "c4fed7e2-b2d6-4d63-8696-3c4c16cfdef4"
+ "c5aab845-de8b-48a8-9e24-bdfc30fcd080"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193928Z:c4fed7e2-b2d6-4d63-8696-3c4c16cfdef4"
+ "WESTUS:20200122T224425Z:c5aab845-de8b-48a8-9e24-bdfc30fcd080"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2271,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:28 GMT"
+ "Wed, 22 Jan 2020 22:44:24 GMT"
],
"Content-Length": [
"1761"
@@ -2283,25 +2283,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6/k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm0Q=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ed2bd63-a6c3-4e73-a863-203b31d05798"
+ "b48fd89a-d700-4890-b7ff-2ba439d49d2b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2316,16 +2316,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11969"
],
"x-ms-request-id": [
- "1fc37c01-aa4f-43ca-91d1-d9da31f25e7b"
+ "e044c128-4f7a-4826-a245-461b7ee0a841"
],
"x-ms-correlation-request-id": [
- "1fc37c01-aa4f-43ca-91d1-d9da31f25e7b"
+ "e044c128-4f7a-4826-a245-461b7ee0a841"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193929Z:1fc37c01-aa4f-43ca-91d1-d9da31f25e7b"
+ "WESTUS:20200122T224425Z:e044c128-4f7a-4826-a245-461b7ee0a841"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2334,7 +2334,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:29 GMT"
+ "Wed, 22 Jan 2020 22:44:24 GMT"
],
"Content-Length": [
"1761"
@@ -2346,19 +2346,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6/k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm0Q=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2373,16 +2373,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11967"
],
"x-ms-request-id": [
- "83c15d9c-3e2b-4a5c-aeb9-4eca6469e66c"
+ "69bb3780-c532-4c9e-85d5-c71b2f44e7a5"
],
"x-ms-correlation-request-id": [
- "83c15d9c-3e2b-4a5c-aeb9-4eca6469e66c"
+ "69bb3780-c532-4c9e-85d5-c71b2f44e7a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194002Z:83c15d9c-3e2b-4a5c-aeb9-4eca6469e66c"
+ "WESTUS:20200122T224459Z:69bb3780-c532-4c9e-85d5-c71b2f44e7a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2391,7 +2391,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:01 GMT"
+ "Wed, 22 Jan 2020 22:44:58 GMT"
],
"Content-Length": [
"1761"
@@ -2403,25 +2403,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7DM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm/g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8c626bf-117b-4e20-a37d-48e7b6cccaa0"
+ "a3de5d39-d814-4ed2-843e-3cc28ea888bc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2436,16 +2436,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11966"
],
"x-ms-request-id": [
- "7e743175-8478-4443-849e-0bf790f118e4"
+ "932bb05a-faf9-418b-8fcb-e722681e0ab1"
],
"x-ms-correlation-request-id": [
- "7e743175-8478-4443-849e-0bf790f118e4"
+ "932bb05a-faf9-418b-8fcb-e722681e0ab1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194003Z:7e743175-8478-4443-849e-0bf790f118e4"
+ "WESTUS:20200122T224500Z:932bb05a-faf9-418b-8fcb-e722681e0ab1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2454,7 +2454,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:02 GMT"
+ "Wed, 22 Jan 2020 22:44:59 GMT"
],
"Content-Length": [
"1761"
@@ -2466,25 +2466,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7DM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm/g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6565d9fa-72b4-4548-9a83-30002848a1c5"
+ "855e126e-f18a-496e-9a1b-3667c9559739"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2499,16 +2499,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11965"
],
"x-ms-request-id": [
- "c0df0df3-bb70-4757-b5ab-7bd304c32daf"
+ "62690052-8815-4b7a-a0bc-9df9fc9d18cd"
],
"x-ms-correlation-request-id": [
- "c0df0df3-bb70-4757-b5ab-7bd304c32daf"
+ "62690052-8815-4b7a-a0bc-9df9fc9d18cd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194003Z:c0df0df3-bb70-4757-b5ab-7bd304c32daf"
+ "WESTUS:20200122T224500Z:62690052-8815-4b7a-a0bc-9df9fc9d18cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2517,7 +2517,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:03 GMT"
+ "Wed, 22 Jan 2020 22:45:00 GMT"
],
"Content-Length": [
"1761"
@@ -2529,19 +2529,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7DM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmm/g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2556,16 +2556,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11963"
],
"x-ms-request-id": [
- "c50c0ba4-9547-4edb-8adc-40fa807f8b1e"
+ "54796f6c-7a62-4e31-acb7-094696c7e8a8"
],
"x-ms-correlation-request-id": [
- "c50c0ba4-9547-4edb-8adc-40fa807f8b1e"
+ "54796f6c-7a62-4e31-acb7-094696c7e8a8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194037Z:c50c0ba4-9547-4edb-8adc-40fa807f8b1e"
+ "WESTUS:20200122T224534Z:54796f6c-7a62-4e31-acb7-094696c7e8a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2574,7 +2574,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:36 GMT"
+ "Wed, 22 Jan 2020 22:45:33 GMT"
],
"Content-Length": [
"1764"
@@ -2586,25 +2586,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7KY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f70d1a2-a42f-4d29-a474-59100fbd47f8"
+ "cc03da86-702e-4275-ab76-a9104d520511"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2619,16 +2619,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11962"
],
"x-ms-request-id": [
- "3e6f4d3e-f127-4753-b385-a8739b6c7322"
+ "b12398ec-baf4-46d0-813a-d3ae0546c1c9"
],
"x-ms-correlation-request-id": [
- "3e6f4d3e-f127-4753-b385-a8739b6c7322"
+ "b12398ec-baf4-46d0-813a-d3ae0546c1c9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194037Z:3e6f4d3e-f127-4753-b385-a8739b6c7322"
+ "WESTUS:20200122T224534Z:b12398ec-baf4-46d0-813a-d3ae0546c1c9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2637,7 +2637,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:36 GMT"
+ "Wed, 22 Jan 2020 22:45:33 GMT"
],
"Content-Length": [
"1764"
@@ -2649,25 +2649,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7KY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e910a66e-7063-46c3-bf83-1dbf99f8a603"
+ "ddaf2071-34b3-476f-9a74-b46b9c9ee5ea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2682,16 +2682,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11961"
],
"x-ms-request-id": [
- "d2dcad0d-0de7-4d40-9c1c-a0e972ef44ef"
+ "bde969f7-eacd-4cba-b31e-70c594d8f74f"
],
"x-ms-correlation-request-id": [
- "d2dcad0d-0de7-4d40-9c1c-a0e972ef44ef"
+ "bde969f7-eacd-4cba-b31e-70c594d8f74f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194038Z:d2dcad0d-0de7-4d40-9c1c-a0e972ef44ef"
+ "WESTUS:20200122T224535Z:bde969f7-eacd-4cba-b31e-70c594d8f74f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2700,7 +2700,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:37 GMT"
+ "Wed, 22 Jan 2020 22:45:34 GMT"
],
"Content-Length": [
"1764"
@@ -2712,19 +2712,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7KY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2739,16 +2739,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11959"
],
"x-ms-request-id": [
- "3dfd68b2-192d-4f0d-b5e2-917d0432dadb"
+ "90ac5281-36fe-4466-9ca2-bc4e9b6e3008"
],
"x-ms-correlation-request-id": [
- "3dfd68b2-192d-4f0d-b5e2-917d0432dadb"
+ "90ac5281-36fe-4466-9ca2-bc4e9b6e3008"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194111Z:3dfd68b2-192d-4f0d-b5e2-917d0432dadb"
+ "WESTUS:20200122T224608Z:90ac5281-36fe-4466-9ca2-bc4e9b6e3008"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2757,7 +2757,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:11 GMT"
+ "Wed, 22 Jan 2020 22:46:08 GMT"
],
"Content-Length": [
"1764"
@@ -2769,25 +2769,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7Oo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnlI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e233a265-9767-4b0b-9a15-7c18d93770a1"
+ "69a89c4e-4f0d-47e1-bd11-9acbd2fdf2c7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2802,16 +2802,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11958"
],
"x-ms-request-id": [
- "7c1add11-bc1b-4e9d-ad26-3bf31a8e06ab"
+ "e5147973-da82-4c77-903e-a076f18675d4"
],
"x-ms-correlation-request-id": [
- "7c1add11-bc1b-4e9d-ad26-3bf31a8e06ab"
+ "e5147973-da82-4c77-903e-a076f18675d4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194111Z:7c1add11-bc1b-4e9d-ad26-3bf31a8e06ab"
+ "WESTUS:20200122T224609Z:e5147973-da82-4c77-903e-a076f18675d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2820,7 +2820,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:11 GMT"
+ "Wed, 22 Jan 2020 22:46:08 GMT"
],
"Content-Length": [
"1764"
@@ -2832,25 +2832,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7Oo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnlI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce012291-96b5-4410-ab39-9f7e1969deb3"
+ "bc56e690-3105-4c53-9b63-9d5a8184b450"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2865,16 +2865,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11957"
],
"x-ms-request-id": [
- "cedb7dbd-da81-4dc8-8f29-154b5829ad42"
+ "ad2ab011-56bf-40a4-a1ce-faf2973680e5"
],
"x-ms-correlation-request-id": [
- "cedb7dbd-da81-4dc8-8f29-154b5829ad42"
+ "ad2ab011-56bf-40a4-a1ce-faf2973680e5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194112Z:cedb7dbd-da81-4dc8-8f29-154b5829ad42"
+ "WESTUS:20200122T224609Z:ad2ab011-56bf-40a4-a1ce-faf2973680e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2883,7 +2883,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:12 GMT"
+ "Wed, 22 Jan 2020 22:46:09 GMT"
],
"Content-Length": [
"1764"
@@ -2895,19 +2895,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7Oo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmnlI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2922,16 +2922,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11955"
],
"x-ms-request-id": [
- "c5c80738-7d4f-4a9c-ab2d-fce9fdb6df03"
+ "a4967a94-4d77-456b-9760-d5a395209830"
],
"x-ms-correlation-request-id": [
- "c5c80738-7d4f-4a9c-ab2d-fce9fdb6df03"
+ "a4967a94-4d77-456b-9760-d5a395209830"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194145Z:c5c80738-7d4f-4a9c-ab2d-fce9fdb6df03"
+ "WESTUS:20200122T224643Z:a4967a94-4d77-456b-9760-d5a395209830"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2940,7 +2940,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:45 GMT"
+ "Wed, 22 Jan 2020 22:46:42 GMT"
],
"Content-Length": [
"1764"
@@ -2952,25 +2952,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7TE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoGM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30337e73-89c8-4487-96ae-8ba67d0f11e9"
+ "2c2c767f-a6fd-4f50-8e6e-1dc74acc2343"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -2985,16 +2985,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11954"
],
"x-ms-request-id": [
- "c9478b12-f014-46f4-b911-5bbf75443d85"
+ "40405216-fa49-48ab-9ff6-f4dc981f70dd"
],
"x-ms-correlation-request-id": [
- "c9478b12-f014-46f4-b911-5bbf75443d85"
+ "40405216-fa49-48ab-9ff6-f4dc981f70dd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194145Z:c9478b12-f014-46f4-b911-5bbf75443d85"
+ "WESTUS:20200122T224643Z:40405216-fa49-48ab-9ff6-f4dc981f70dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3003,7 +3003,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:45 GMT"
+ "Wed, 22 Jan 2020 22:46:42 GMT"
],
"Content-Length": [
"1764"
@@ -3015,25 +3015,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7TE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoGM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "107d3aa3-fa10-4ab3-b82c-b8752dad0207"
+ "78c6c985-e2b2-4255-acc9-beae783f16c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3048,16 +3048,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11953"
],
"x-ms-request-id": [
- "4a8de335-e794-4806-b7bb-eaff84cc509b"
+ "1f8cb340-b8c6-4dfa-8b27-8e466bcc0bad"
],
"x-ms-correlation-request-id": [
- "4a8de335-e794-4806-b7bb-eaff84cc509b"
+ "1f8cb340-b8c6-4dfa-8b27-8e466bcc0bad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194146Z:4a8de335-e794-4806-b7bb-eaff84cc509b"
+ "WESTUS:20200122T224643Z:1f8cb340-b8c6-4dfa-8b27-8e466bcc0bad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3066,7 +3066,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:45 GMT"
+ "Wed, 22 Jan 2020 22:46:43 GMT"
],
"Content-Length": [
"1764"
@@ -3078,19 +3078,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7TE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoGM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3105,16 +3105,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11951"
],
"x-ms-request-id": [
- "ee580811-d6d1-44dd-abbb-44228531a5ae"
+ "97e401fd-e9f0-4559-92fb-528d3f80815f"
],
"x-ms-correlation-request-id": [
- "ee580811-d6d1-44dd-abbb-44228531a5ae"
+ "97e401fd-e9f0-4559-92fb-528d3f80815f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194219Z:ee580811-d6d1-44dd-abbb-44228531a5ae"
+ "WESTUS:20200122T224717Z:97e401fd-e9f0-4559-92fb-528d3f80815f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3123,7 +3123,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:19 GMT"
+ "Wed, 22 Jan 2020 22:47:16 GMT"
],
"Content-Length": [
"1567"
@@ -3135,25 +3135,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7bQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoWU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51e0c378-fa83-439e-aa8d-033543d03dcd"
+ "9fa3f443-07a3-432c-997e-c3f5fdb4078d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3168,16 +3168,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11950"
],
"x-ms-request-id": [
- "9d37d164-b547-4e28-adda-6050962e2611"
+ "d749f983-66cf-4c8d-b054-956a9fb198a9"
],
"x-ms-correlation-request-id": [
- "9d37d164-b547-4e28-adda-6050962e2611"
+ "d749f983-66cf-4c8d-b054-956a9fb198a9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194220Z:9d37d164-b547-4e28-adda-6050962e2611"
+ "WESTUS:20200122T224717Z:d749f983-66cf-4c8d-b054-956a9fb198a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3186,7 +3186,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:19 GMT"
+ "Wed, 22 Jan 2020 22:47:17 GMT"
],
"Content-Length": [
"1567"
@@ -3198,25 +3198,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7bQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoWU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06d3ac81-4b4f-47bd-b51e-69650dd2c35c"
+ "9313c7eb-d7e7-47b5-998d-08096d3c7592"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3231,16 +3231,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11949"
],
"x-ms-request-id": [
- "bc96fb81-7ecf-4eda-83f8-9852dff0f29b"
+ "12e77bb5-ce75-4f29-85cc-7dff8b5510f0"
],
"x-ms-correlation-request-id": [
- "bc96fb81-7ecf-4eda-83f8-9852dff0f29b"
+ "12e77bb5-ce75-4f29-85cc-7dff8b5510f0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194220Z:bc96fb81-7ecf-4eda-83f8-9852dff0f29b"
+ "WESTUS:20200122T224717Z:12e77bb5-ce75-4f29-85cc-7dff8b5510f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3249,7 +3249,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:19 GMT"
+ "Wed, 22 Jan 2020 22:47:17 GMT"
],
"Content-Length": [
"1567"
@@ -3261,19 +3261,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7bQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmoWU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3288,16 +3288,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11947"
],
"x-ms-request-id": [
- "c3950273-8a9f-4fbd-8e7f-e4804a2e0476"
+ "13ce9838-ea9f-4889-aca5-22378d79c487"
],
"x-ms-correlation-request-id": [
- "c3950273-8a9f-4fbd-8e7f-e4804a2e0476"
+ "13ce9838-ea9f-4889-aca5-22378d79c487"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194253Z:c3950273-8a9f-4fbd-8e7f-e4804a2e0476"
+ "WESTUS:20200122T224751Z:13ce9838-ea9f-4889-aca5-22378d79c487"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3306,7 +3306,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:52 GMT"
+ "Wed, 22 Jan 2020 22:47:50 GMT"
],
"Content-Length": [
"1674"
@@ -3318,25 +3318,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7qc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmojo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84f38ff4-3bf0-49ef-b558-334e0f5beb22"
+ "bf160267-1412-47e2-9260-74e6f4153d11"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3351,16 +3351,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "11946"
],
"x-ms-request-id": [
- "5d8345d4-1c3e-42c3-ade5-9e4dfb8a65f7"
+ "f6e85974-646e-4739-a193-5d54e75efb91"
],
"x-ms-correlation-request-id": [
- "5d8345d4-1c3e-42c3-ade5-9e4dfb8a65f7"
+ "f6e85974-646e-4739-a193-5d54e75efb91"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194254Z:5d8345d4-1c3e-42c3-ade5-9e4dfb8a65f7"
+ "WESTUS:20200122T224751Z:f6e85974-646e-4739-a193-5d54e75efb91"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3369,7 +3369,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:53 GMT"
+ "Wed, 22 Jan 2020 22:47:51 GMT"
],
"Content-Length": [
"1674"
@@ -3381,25 +3381,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7qc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmojo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48ad6199-51d6-4be1-a10d-479abe5148f6"
+ "fbbf0adb-a44f-4872-9e39-d972976f8ebe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3414,16 +3414,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11945"
],
"x-ms-request-id": [
- "7548309e-888e-47fa-bd76-19dfb4d9081a"
+ "a86a2590-6013-40c8-8ba0-7a9300d2265f"
],
"x-ms-correlation-request-id": [
- "7548309e-888e-47fa-bd76-19dfb4d9081a"
+ "a86a2590-6013-40c8-8ba0-7a9300d2265f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194254Z:7548309e-888e-47fa-bd76-19dfb4d9081a"
+ "WESTUS:20200122T224752Z:a86a2590-6013-40c8-8ba0-7a9300d2265f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3432,7 +3432,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:53 GMT"
+ "Wed, 22 Jan 2020 22:47:51 GMT"
],
"Content-Length": [
"1674"
@@ -3444,25 +3444,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7qc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmojo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2267022-edac-445c-b672-1c7e9e888ba4"
+ "c4392cf2-b899-49f7-b1fe-2c0c5636142e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3477,16 +3477,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11944"
],
"x-ms-request-id": [
- "99837f54-b950-4b80-a499-a25a42d4638b"
+ "f95d920b-7d3a-4f32-940f-71e65d460977"
],
"x-ms-correlation-request-id": [
- "99837f54-b950-4b80-a499-a25a42d4638b"
+ "f95d920b-7d3a-4f32-940f-71e65d460977"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194254Z:99837f54-b950-4b80-a499-a25a42d4638b"
+ "WESTUS:20200122T224752Z:f95d920b-7d3a-4f32-940f-71e65d460977"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3495,7 +3495,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:54 GMT"
+ "Wed, 22 Jan 2020 22:47:52 GMT"
],
"Content-Length": [
"1674"
@@ -3507,19 +3507,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju7qc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmojo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3534,16 +3534,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "11942"
],
"x-ms-request-id": [
- "d36d103f-214b-415c-ba8a-5d5e54b14ebe"
+ "ac22793c-06d5-451a-9702-91af70a63332"
],
"x-ms-correlation-request-id": [
- "d36d103f-214b-415c-ba8a-5d5e54b14ebe"
+ "ac22793c-06d5-451a-9702-91af70a63332"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194328Z:d36d103f-214b-415c-ba8a-5d5e54b14ebe"
+ "WESTUS:20200122T224825Z:ac22793c-06d5-451a-9702-91af70a63332"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3552,7 +3552,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:27 GMT"
+ "Wed, 22 Jan 2020 22:48:25 GMT"
],
"Content-Length": [
"1673"
@@ -3564,25 +3564,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju70I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmouQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58163ee0-8221-43a7-83ee-b6f7e94d826c"
+ "510e2c84-0b9c-4709-bcd9-78c2b9025e64"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3597,16 +3597,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
+ "11941"
],
"x-ms-request-id": [
- "3b8088e7-d31b-408f-9034-e255bbe673ba"
+ "00e673d2-d05b-46c7-b714-b97b40ef3aee"
],
"x-ms-correlation-request-id": [
- "3b8088e7-d31b-408f-9034-e255bbe673ba"
+ "00e673d2-d05b-46c7-b714-b97b40ef3aee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194328Z:3b8088e7-d31b-408f-9034-e255bbe673ba"
+ "WESTUS:20200122T224826Z:00e673d2-d05b-46c7-b714-b97b40ef3aee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3615,7 +3615,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:28 GMT"
+ "Wed, 22 Jan 2020 22:48:25 GMT"
],
"Content-Length": [
"1673"
@@ -3627,25 +3627,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju70I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmouQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3e5f402-7283-4616-a940-e98d1a46b59e"
+ "68746a2c-abdf-415b-88e7-4b6112ae9801"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3660,16 +3660,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11940"
],
"x-ms-request-id": [
- "1cbc781f-5b0f-47b0-83b2-1cf50e2afe87"
+ "7c092d74-fc72-42fa-922b-2bc6b8332042"
],
"x-ms-correlation-request-id": [
- "1cbc781f-5b0f-47b0-83b2-1cf50e2afe87"
+ "7c092d74-fc72-42fa-922b-2bc6b8332042"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194328Z:1cbc781f-5b0f-47b0-83b2-1cf50e2afe87"
+ "WESTUS:20200122T224826Z:7c092d74-fc72-42fa-922b-2bc6b8332042"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3678,7 +3678,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:28 GMT"
+ "Wed, 22 Jan 2020 22:48:25 GMT"
],
"Content-Length": [
"1673"
@@ -3690,25 +3690,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju70I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmouQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26e1c14c-2bef-4ce1-84bf-fef7e29deadc"
+ "aeec51aa-9eac-4cad-b53a-73ef193cc528"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3723,16 +3723,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
+ "11939"
],
"x-ms-request-id": [
- "97b904f3-ba59-475e-bc68-8cfb17486a17"
+ "de195ea8-9ebf-4f86-b8dc-987cf6bccced"
],
"x-ms-correlation-request-id": [
- "97b904f3-ba59-475e-bc68-8cfb17486a17"
+ "de195ea8-9ebf-4f86-b8dc-987cf6bccced"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194330Z:97b904f3-ba59-475e-bc68-8cfb17486a17"
+ "WESTUS:20200122T224828Z:de195ea8-9ebf-4f86-b8dc-987cf6bccced"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3741,7 +3741,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:30 GMT"
+ "Wed, 22 Jan 2020 22:48:27 GMT"
],
"Content-Length": [
"1688"
@@ -3753,25 +3753,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju74s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmo2M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbfc5499-3eed-40a4-b9de-7d245371a267"
+ "c510e013-28ce-41cb-b786-1119c09aad57"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3786,16 +3786,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "11938"
],
"x-ms-request-id": [
- "02b4b30c-8ced-4b22-951b-80ea88d8e15c"
+ "ebb20cf6-7242-4ba7-88b1-6afc98172644"
],
"x-ms-correlation-request-id": [
- "02b4b30c-8ced-4b22-951b-80ea88d8e15c"
+ "ebb20cf6-7242-4ba7-88b1-6afc98172644"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194331Z:02b4b30c-8ced-4b22-951b-80ea88d8e15c"
+ "WESTUS:20200122T224830Z:ebb20cf6-7242-4ba7-88b1-6afc98172644"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3804,7 +3804,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:31 GMT"
+ "Wed, 22 Jan 2020 22:48:30 GMT"
],
"Content-Length": [
"1704"
@@ -3816,25 +3816,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju744=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmo2k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec53a88b-4774-4e8a-8b33-dcf3219a0f2b"
+ "27d2c3e6-b88b-427c-b004-71936c0c345e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3849,16 +3849,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11937"
],
"x-ms-request-id": [
- "e0eba096-f670-450f-8691-f592855cc881"
+ "1b124764-3bae-4e8d-ab17-4a9831423cff"
],
"x-ms-correlation-request-id": [
- "e0eba096-f670-450f-8691-f592855cc881"
+ "1b124764-3bae-4e8d-ab17-4a9831423cff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194333Z:e0eba096-f670-450f-8691-f592855cc881"
+ "WESTUS:20200122T224831Z:1b124764-3bae-4e8d-ab17-4a9831423cff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3867,7 +3867,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:32 GMT"
+ "Wed, 22 Jan 2020 22:48:31 GMT"
],
"Content-Length": [
"1688"
@@ -3879,25 +3879,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju75E=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmo3Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aee80e14-e57c-4ee3-b0ff-8c7cc159ffed"
+ "707a6b8a-9724-4661-a43c-c98396ead02e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3912,16 +3912,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11936"
],
"x-ms-request-id": [
- "445616d6-02a5-4ae1-870f-49821ec3309d"
+ "fc44e01c-2616-45cc-94b7-872208443dd2"
],
"x-ms-correlation-request-id": [
- "445616d6-02a5-4ae1-870f-49821ec3309d"
+ "fc44e01c-2616-45cc-94b7-872208443dd2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194333Z:445616d6-02a5-4ae1-870f-49821ec3309d"
+ "WESTUS:20200122T224832Z:fc44e01c-2616-45cc-94b7-872208443dd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3930,7 +3930,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:33 GMT"
+ "Wed, 22 Jan 2020 22:48:32 GMT"
],
"Content-Length": [
"1688"
@@ -3942,25 +3942,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju75E=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmo3Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c28f340e-551c-49cc-b367-ef11f49f5f8e"
+ "a88804f8-1de4-4866-8c47-93c993d3dc23"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -3975,16 +3975,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
+ "11899"
],
"x-ms-request-id": [
- "dad34881-5a9d-4d4b-90bb-767bcbb47a69"
+ "859c974d-9d48-4152-833b-90d6fcfb5073"
],
"x-ms-correlation-request-id": [
- "dad34881-5a9d-4d4b-90bb-767bcbb47a69"
+ "859c974d-9d48-4152-833b-90d6fcfb5073"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194926Z:dad34881-5a9d-4d4b-90bb-767bcbb47a69"
+ "WESTUS:20200122T225713Z:859c974d-9d48-4152-833b-90d6fcfb5073"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3993,7 +3993,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:26 GMT"
+ "Wed, 22 Jan 2020 22:57:12 GMT"
],
"Content-Length": [
"1688"
@@ -4005,25 +4005,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju9hE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7895a47588.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmq6I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-c536b75b09.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "818cabca-a847-4b73-84c4-75ceff4f12e5"
+ "77ea3c0b-d689-4d27-a327-c8f594c0b4a2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4038,16 +4038,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11990"
],
"x-ms-request-id": [
- "997ac323-511c-496b-82a4-1c28bfa24c44"
+ "97b5dba2-8ba8-468c-9575-5bce640cce94"
],
"x-ms-correlation-request-id": [
- "997ac323-511c-496b-82a4-1c28bfa24c44"
+ "97b5dba2-8ba8-468c-9575-5bce640cce94"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193741Z:997ac323-511c-496b-82a4-1c28bfa24c44"
+ "WESTUS:20200122T224235Z:97b5dba2-8ba8-468c-9575-5bce640cce94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4056,7 +4056,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:41 GMT"
+ "Wed, 22 Jan 2020 22:42:34 GMT"
],
"Content-Length": [
"1773"
@@ -4068,25 +4068,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"AAAAAAju6m8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6735.servicebus.windows.net:5671/;SharedAccessKeyName=ps1757;SharedAccessKey=****;EntityPath=ps1800\",\r\n \"name\": \"eh1\",\r\n \"id\": \"a98f8572-ddb6-4313-bedf-502e1b0a40c6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"AAAAAArmmac=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4729.servicebus.windows.net:5671/;SharedAccessKeyName=ps4195;SharedAccessKey=****;EntityPath=ps7567\",\r\n \"name\": \"eh1\",\r\n \"id\": \"5149e304-ec3c-40d1-ada2-34d924ef8fde\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/quotaMetrics?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvcXVvdGFNZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/quotaMetrics?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvcXVvdGFNZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1423529-574a-432f-a542-f848eb7412b2"
+ "3fb3cd95-7315-407f-8432-90b95d04c1ee"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4101,16 +4101,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11988"
],
"x-ms-request-id": [
- "c5273329-2a8b-49ca-ac76-bceace8bdf62"
+ "1213e12c-9357-4e87-9ca4-6efd3de239d4"
],
"x-ms-correlation-request-id": [
- "c5273329-2a8b-49ca-ac76-bceace8bdf62"
+ "1213e12c-9357-4e87-9ca4-6efd3de239d4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193741Z:c5273329-2a8b-49ca-ac76-bceace8bdf62"
+ "WESTUS:20200122T224235Z:1213e12c-9357-4e87-9ca4-6efd3de239d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4119,7 +4119,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:41 GMT"
+ "Wed, 22 Jan 2020 22:42:34 GMT"
],
"Content-Length": [
"135"
@@ -4135,21 +4135,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/IotHubStats?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvSW90SHViU3RhdHM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/IotHubStats?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvSW90SHViU3RhdHM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb3a7cd5-7f90-4172-8b98-dcd650c3b06a"
+ "56f941df-7923-427d-8630-f12f1f906d49"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4164,16 +4164,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11987"
],
"x-ms-request-id": [
- "c13c1da5-888a-4d6c-805a-9f67e44040bd"
+ "99961a33-7900-4f75-94c7-69ca3383dca7"
],
"x-ms-correlation-request-id": [
- "c13c1da5-888a-4d6c-805a-9f67e44040bd"
+ "99961a33-7900-4f75-94c7-69ca3383dca7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193741Z:c13c1da5-888a-4d6c-805a-9f67e44040bd"
+ "WESTUS:20200122T224235Z:99961a33-7900-4f75-94c7-69ca3383dca7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4182,7 +4182,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:41 GMT"
+ "Wed, 22 Jan 2020 22:42:35 GMT"
],
"Content-Length": [
"69"
@@ -4198,21 +4198,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/skus?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzgvc2t1cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/skus?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzgvc2t1cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e262f03b-d1b8-4ee6-a652-4fd498f9b367"
+ "e3e8be88-b8ee-4210-9fe1-ac50d3faeee3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4227,16 +4227,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11986"
],
"x-ms-request-id": [
- "cb2f0e19-e25e-4231-87ee-b3c884acf18b"
+ "b3a450b7-36c2-4f04-8ab1-1a7ded623b28"
],
"x-ms-correlation-request-id": [
- "cb2f0e19-e25e-4231-87ee-b3c884acf18b"
+ "b3a450b7-36c2-4f04-8ab1-1a7ded623b28"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193742Z:cb2f0e19-e25e-4231-87ee-b3c884acf18b"
+ "WESTUS:20200122T224236Z:b3a450b7-36c2-4f04-8ab1-1a7ded623b28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4245,7 +4245,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:42 GMT"
+ "Wed, 22 Jan 2020 22:42:35 GMT"
],
"Content-Length": [
"930"
@@ -4261,21 +4261,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "385bd0f9-3877-4c7e-a7d5-aee76458aa02"
+ "7f79798c-65d8-4af8-8dbf-bdbebfe73402"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4290,16 +4290,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11985"
],
"x-ms-request-id": [
- "1bccd141-bd9b-4b39-b2df-8871c7b7d95f"
+ "80922d91-97e0-4deb-84e9-ca01b2f40cc2"
],
"x-ms-correlation-request-id": [
- "1bccd141-bd9b-4b39-b2df-8871c7b7d95f"
+ "80922d91-97e0-4deb-84e9-ca01b2f40cc2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193742Z:1bccd141-bd9b-4b39-b2df-8871c7b7d95f"
+ "WESTUS:20200122T224236Z:80922d91-97e0-4deb-84e9-ca01b2f40cc2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4308,7 +4308,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:42 GMT"
+ "Wed, 22 Jan 2020 22:42:36 GMT"
],
"Content-Length": [
"343"
@@ -4320,25 +4320,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:41:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d02c8f08-cb26-4406-9586-7e0a40bcf31c"
+ "763b7c8a-1143-47f6-a539-d9aafd1120b3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4353,16 +4353,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11982"
],
"x-ms-request-id": [
- "1bd0cfed-42d3-423b-af6e-126720bd972a"
+ "00cbb84d-4727-409e-ac07-1d385bd8fe60"
],
"x-ms-correlation-request-id": [
- "1bd0cfed-42d3-423b-af6e-126720bd972a"
+ "00cbb84d-4727-409e-ac07-1d385bd8fe60"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193745Z:1bd0cfed-42d3-423b-af6e-126720bd972a"
+ "WESTUS:20200122T224240Z:00cbb84d-4727-409e-ac07-1d385bd8fe60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4371,7 +4371,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:45 GMT"
+ "Wed, 22 Jan 2020 22:42:39 GMT"
],
"Content-Length": [
"663"
@@ -4383,25 +4383,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:45 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:41:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:42:39 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "73379568-46c7-47cf-99af-03ee8bc03ad4"
+ "c7b7ea1f-4063-444b-bfd7-d2dcf03ca768"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4416,16 +4416,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11981"
],
"x-ms-request-id": [
- "8c0846b5-257c-4278-8595-1c6f0fbbe3f0"
+ "08aa232e-3cc4-4531-bfc6-00e29731109b"
],
"x-ms-correlation-request-id": [
- "8c0846b5-257c-4278-8595-1c6f0fbbe3f0"
+ "08aa232e-3cc4-4531-bfc6-00e29731109b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193746Z:8c0846b5-257c-4278-8595-1c6f0fbbe3f0"
+ "WESTUS:20200122T224240Z:08aa232e-3cc4-4531-bfc6-00e29731109b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4434,7 +4434,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:46 GMT"
+ "Wed, 22 Jan 2020 22:42:39 GMT"
],
"Content-Length": [
"663"
@@ -4446,25 +4446,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:45 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:41:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:42:39 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00449958-8ae7-480f-bfed-995ae82036c0"
+ "2e0ca075-80be-43b9-ae92-bde091f7a620"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4475,20 +4475,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
"x-ms-request-id": [
- "71ab7b2b-70fb-45ba-b578-82c885d1f0ea"
+ "3f518022-7177-4207-b3dd-d86950dd79c7"
],
"x-ms-correlation-request-id": [
- "71ab7b2b-70fb-45ba-b578-82c885d1f0ea"
+ "3f518022-7177-4207-b3dd-d86950dd79c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193746Z:71ab7b2b-70fb-45ba-b578-82c885d1f0ea"
+ "WESTUS:20200122T224241Z:3f518022-7177-4207-b3dd-d86950dd79c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4497,7 +4497,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:46 GMT"
+ "Wed, 22 Jan 2020 22:42:40 GMT"
],
"Content-Length": [
"343"
@@ -4509,25 +4509,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:41:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af26d7a4-eedd-4b2d-9cf6-863e475de433"
+ "944a8979-b96b-47d2-b6f0-c3e52640987c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4542,16 +4542,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11979"
],
"x-ms-request-id": [
- "e11a2ef2-7b4f-4e9a-a56c-8d8fd004e46b"
+ "46489b98-da59-4b85-9334-ab4b042cdfe7"
],
"x-ms-correlation-request-id": [
- "e11a2ef2-7b4f-4e9a-a56c-8d8fd004e46b"
+ "46489b98-da59-4b85-9334-ab4b042cdfe7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193746Z:e11a2ef2-7b4f-4e9a-a56c-8d8fd004e46b"
+ "WESTUS:20200122T224241Z:46489b98-da59-4b85-9334-ab4b042cdfe7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4560,7 +4560,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:46 GMT"
+ "Wed, 22 Jan 2020 22:42:40 GMT"
],
"Content-Length": [
"343"
@@ -4572,25 +4572,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:41:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5679486a-805d-4554-87bd-6d5d3a835ce3"
+ "818cdbd8-9257-4de6-ad64-1a56e8116c11"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4608,13 +4608,13 @@
"1199"
],
"x-ms-request-id": [
- "9c2bc928-7934-458c-9867-13c3aa4ae5a1"
+ "2f37d6d7-bde2-42ca-97e8-4652e6864dce"
],
"x-ms-correlation-request-id": [
- "9c2bc928-7934-458c-9867-13c3aa4ae5a1"
+ "2f37d6d7-bde2-42ca-97e8-4652e6864dce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193742Z:9c2bc928-7934-458c-9867-13c3aa4ae5a1"
+ "WESTUS:20200122T224237Z:2f37d6d7-bde2-42ca-97e8-4652e6864dce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4623,7 +4623,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:42 GMT"
+ "Wed, 22 Jan 2020 22:42:36 GMT"
],
"Content-Length": [
"905"
@@ -4635,25 +4635,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fee45f84-bb7a-45c7-9987-3097d99dd9df"
+ "903fcff5-d647-4678-a945-b2344ae02bea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4671,13 +4671,13 @@
"1197"
],
"x-ms-request-id": [
- "635b4d52-a4b4-4481-b36a-1d4f32ff99c0"
+ "7bc8e667-28aa-49f7-a3a9-3b703fc8ebd9"
],
"x-ms-correlation-request-id": [
- "635b4d52-a4b4-4481-b36a-1d4f32ff99c0"
+ "7bc8e667-28aa-49f7-a3a9-3b703fc8ebd9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193743Z:635b4d52-a4b4-4481-b36a-1d4f32ff99c0"
+ "WESTUS:20200122T224237Z:7bc8e667-28aa-49f7-a3a9-3b703fc8ebd9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4686,7 +4686,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:43 GMT"
+ "Wed, 22 Jan 2020 22:42:37 GMT"
],
"Content-Length": [
"905"
@@ -4698,25 +4698,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1503d310-848d-4d0b-8b68-0540106c087c"
+ "8527fdde-79b7-4ec0-bc59-d75a14ce6ec8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4734,13 +4734,13 @@
"1195"
],
"x-ms-request-id": [
- "42b0fd72-f1a0-4c44-9703-66aced9a07f1"
+ "869d9e9c-05f7-46aa-8bc7-989f29f476da"
],
"x-ms-correlation-request-id": [
- "42b0fd72-f1a0-4c44-9703-66aced9a07f1"
+ "869d9e9c-05f7-46aa-8bc7-989f29f476da"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193747Z:42b0fd72-f1a0-4c44-9703-66aced9a07f1"
+ "WESTUS:20200122T224242Z:869d9e9c-05f7-46aa-8bc7-989f29f476da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4749,7 +4749,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:47 GMT"
+ "Wed, 22 Jan 2020 22:42:41 GMT"
],
"Content-Length": [
"905"
@@ -4761,25 +4761,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba2b911f-c224-4022-bc27-63e455ef24f6"
+ "a941075a-dfcd-4d42-b682-b6f6f944bfdf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4797,13 +4797,13 @@
"1194"
],
"x-ms-request-id": [
- "117bf668-a98a-4bf0-9176-08d046084089"
+ "82412eba-ddaf-4625-9cbc-28547b46689d"
],
"x-ms-correlation-request-id": [
- "117bf668-a98a-4bf0-9176-08d046084089"
+ "82412eba-ddaf-4625-9cbc-28547b46689d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193820Z:117bf668-a98a-4bf0-9176-08d046084089"
+ "WESTUS:20200122T224315Z:82412eba-ddaf-4625-9cbc-28547b46689d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4812,7 +4812,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:19 GMT"
+ "Wed, 22 Jan 2020 22:43:15 GMT"
],
"Content-Length": [
"1078"
@@ -4824,25 +4824,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"secondaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"secondaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "028486db-8f67-4df2-a03f-eb90e1619136"
+ "2b33bc67-06b7-43c4-ba4a-258bd6ce2e1e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4860,13 +4860,13 @@
"1193"
],
"x-ms-request-id": [
- "2d21edef-259d-44c3-9593-454c8807aac2"
+ "fc1baf29-2025-4dba-adbb-dde87ccd7424"
],
"x-ms-correlation-request-id": [
- "2d21edef-259d-44c3-9593-454c8807aac2"
+ "fc1baf29-2025-4dba-adbb-dde87ccd7424"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193820Z:2d21edef-259d-44c3-9593-454c8807aac2"
+ "WESTUS:20200122T224315Z:fc1baf29-2025-4dba-adbb-dde87ccd7424"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4875,7 +4875,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:19 GMT"
+ "Wed, 22 Jan 2020 22:43:15 GMT"
],
"Content-Length": [
"1078"
@@ -4887,25 +4887,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"secondaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"secondaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a71d8c9f-aa6d-4e4f-84f7-b7ceb081b86a"
+ "ba2ede98-0b89-416f-ae94-d26b1d9d7c26"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4923,13 +4923,13 @@
"1191"
],
"x-ms-request-id": [
- "debb5352-07ee-47e6-9141-352d9f21f5ad"
+ "4a4e53e0-584d-4a45-926b-873a36b023bf"
],
"x-ms-correlation-request-id": [
- "debb5352-07ee-47e6-9141-352d9f21f5ad"
+ "4a4e53e0-584d-4a45-926b-873a36b023bf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193821Z:debb5352-07ee-47e6-9141-352d9f21f5ad"
+ "WESTUS:20200122T224316Z:4a4e53e0-584d-4a45-926b-873a36b023bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4938,7 +4938,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:20 GMT"
+ "Wed, 22 Jan 2020 22:43:16 GMT"
],
"Content-Length": [
"1078"
@@ -4950,25 +4950,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"secondaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"secondaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e48f2f5f-44ab-46cc-b666-b3d3f3891a8d"
+ "91d1ecf8-c68b-40ef-beaa-8d4986449022"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -4986,13 +4986,13 @@
"1190"
],
"x-ms-request-id": [
- "e200c906-2676-4c79-a9f4-dd8bf745e871"
+ "7ac6fa67-4452-4646-bf06-68707c4c613a"
],
"x-ms-correlation-request-id": [
- "e200c906-2676-4c79-a9f4-dd8bf745e871"
+ "7ac6fa67-4452-4646-bf06-68707c4c613a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193854Z:e200c906-2676-4c79-a9f4-dd8bf745e871"
+ "WESTUS:20200122T224350Z:7ac6fa67-4452-4646-bf06-68707c4c613a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5001,7 +5001,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:53 GMT"
+ "Wed, 22 Jan 2020 22:43:49 GMT"
],
"Content-Length": [
"1078"
@@ -5013,25 +5013,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83ce6cb4-ef64-4d8c-953a-3fedae2ca63d"
+ "1815b05f-7e1a-4493-8690-a5ecebbf00a6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5049,13 +5049,13 @@
"1188"
],
"x-ms-request-id": [
- "36d0dc2f-54ca-47b1-980e-77a6d4806059"
+ "2e646c03-a340-4bba-98a9-07506fece44e"
],
"x-ms-correlation-request-id": [
- "36d0dc2f-54ca-47b1-980e-77a6d4806059"
+ "2e646c03-a340-4bba-98a9-07506fece44e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193855Z:36d0dc2f-54ca-47b1-980e-77a6d4806059"
+ "WESTUS:20200122T224351Z:2e646c03-a340-4bba-98a9-07506fece44e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5064,7 +5064,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:54 GMT"
+ "Wed, 22 Jan 2020 22:43:50 GMT"
],
"Content-Length": [
"1078"
@@ -5076,25 +5076,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5187d7cc-d8be-48a3-996d-5c2a44ab0f67"
+ "9f63ed8b-b039-4dfe-92d2-f39c37a48fba"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5112,13 +5112,13 @@
"1187"
],
"x-ms-request-id": [
- "453464fd-ff9e-4b8d-810d-a053283ae85a"
+ "490a6cc2-068e-4332-9d0f-c671bd49bb98"
],
"x-ms-correlation-request-id": [
- "453464fd-ff9e-4b8d-810d-a053283ae85a"
+ "490a6cc2-068e-4332-9d0f-c671bd49bb98"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193929Z:453464fd-ff9e-4b8d-810d-a053283ae85a"
+ "WESTUS:20200122T224425Z:490a6cc2-068e-4332-9d0f-c671bd49bb98"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5127,7 +5127,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:28 GMT"
+ "Wed, 22 Jan 2020 22:44:24 GMT"
],
"Content-Length": [
"1078"
@@ -5139,25 +5139,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"giYYix5AEWIGaS2jwFZqrFkWgAzblKOKT0DUErDP5sk=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"BXU9M6vuQE+fN5N9F46kODA4trplxqoCYvvV92zcQgM=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03046b60-295e-441c-b3cc-34b26aa662af"
+ "ee1c9222-6f79-4ede-b8ff-27b4555f75b0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5175,13 +5175,13 @@
"1185"
],
"x-ms-request-id": [
- "e3d57315-df31-4cec-94cf-f83fef542bb8"
+ "d418d91e-ba0e-4a1d-926e-017ce84e3976"
],
"x-ms-correlation-request-id": [
- "e3d57315-df31-4cec-94cf-f83fef542bb8"
+ "d418d91e-ba0e-4a1d-926e-017ce84e3976"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193929Z:e3d57315-df31-4cec-94cf-f83fef542bb8"
+ "WESTUS:20200122T224425Z:d418d91e-ba0e-4a1d-926e-017ce84e3976"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5190,7 +5190,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:29 GMT"
+ "Wed, 22 Jan 2020 22:44:24 GMT"
],
"Content-Length": [
"1078"
@@ -5202,25 +5202,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"giYYix5AEWIGaS2jwFZqrFkWgAzblKOKT0DUErDP5sk=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"BXU9M6vuQE+fN5N9F46kODA4trplxqoCYvvV92zcQgM=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6711902-020d-4c11-8dd5-0ccd43b27094"
+ "8e56ea27-9e67-4935-9084-1ab02068ec77"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5238,13 +5238,13 @@
"1184"
],
"x-ms-request-id": [
- "df1ef375-74b7-4fb3-b812-67deeb99be7c"
+ "f96629f0-a0cf-401d-a617-e33d1d400350"
],
"x-ms-correlation-request-id": [
- "df1ef375-74b7-4fb3-b812-67deeb99be7c"
+ "f96629f0-a0cf-401d-a617-e33d1d400350"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194002Z:df1ef375-74b7-4fb3-b812-67deeb99be7c"
+ "WESTUS:20200122T224459Z:f96629f0-a0cf-401d-a617-e33d1d400350"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5253,7 +5253,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:01 GMT"
+ "Wed, 22 Jan 2020 22:44:59 GMT"
],
"Content-Length": [
"905"
@@ -5265,25 +5265,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f50a679-b29f-494b-8618-7d0d3dde7f2f"
+ "96f0ef5f-5073-4179-a1f2-918f160d7245"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5301,13 +5301,13 @@
"1183"
],
"x-ms-request-id": [
- "b221591a-7b4f-467b-9852-639eeaf473c8"
+ "ac032d52-7a23-4302-a61c-28ae39808c58"
],
"x-ms-correlation-request-id": [
- "b221591a-7b4f-467b-9852-639eeaf473c8"
+ "ac032d52-7a23-4302-a61c-28ae39808c58"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194003Z:b221591a-7b4f-467b-9852-639eeaf473c8"
+ "WESTUS:20200122T224459Z:ac032d52-7a23-4302-a61c-28ae39808c58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5316,7 +5316,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:02 GMT"
+ "Wed, 22 Jan 2020 22:44:59 GMT"
],
"Content-Length": [
"905"
@@ -5328,25 +5328,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"BlGk+I06BeNDBrmAfwkajvFn0bUMlJxW2B1TQo3ZPSA=\",\r\n \"secondaryKey\": \"EYYmQtPY4sVeaEsWOaPlpRHfYDUz4uWGXnqpb/MVOTk=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"wwWGkxR5eseJlCob34qUL/ir7jw1JjRh5oY4Amy+bNs=\",\r\n \"secondaryKey\": \"MmwEs7u2j+n8/zYnBEm6pSPKGFFEjYSKzmq8jnw8bo4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o60x77BHWaKdi52Eed9Ws5JaPXztHrQOHaClvDj37TQ=\",\r\n \"secondaryKey\": \"T8f5qV626ea3EheaKCR7LUZ/xeLgQYQhNsaAuvSX070=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"FyT9YXU5FlX8T2LOzZZB7l7OooUpOJDyqzk5PVGLH7E=\",\r\n \"secondaryKey\": \"g4ixq0/iKfypb0wpYt+7DUfvD2kkglDtW5eE55imbDE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"2dLH80kkz+bj5uYzWElgZy3DvlmKTw0JZNKAhQNkYfA=\",\r\n \"secondaryKey\": \"imjGsZ1usREGpxu06kfWn2bKkAU/ilIqRywEW89Mx/s=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"CXGynZwIr+x/fkjuFl00MSOhtBDOHsSBEAY57d2sR6A=\",\r\n \"secondaryKey\": \"xjVk/kb2Jy8x7Of3zA8520IM7AxmNwh+Cc1WObE+K1o=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"o6L+U6oYlgJTuvE3tUOBwb5u1Dawv7vAOgtz8pqUk9Q=\",\r\n \"secondaryKey\": \"fHgfxxvo7OXFSGv9zwbxhswZav1gAvWkb1IBnGQZaOk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"aSx1OA7PoGwt+rOxNXR8JkiF6UJ5gaUZlr25IJiNXfI=\",\r\n \"secondaryKey\": \"jPEilppTa1GbKi+bSIeTn0GbxappwMsK0JvVYhYS3Q8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "482a8350-c5c8-4afd-8fd3-eaf44045e2bc"
+ "d73e045a-ecd7-44b2-aefd-f9f5c69a0bea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5364,13 +5364,13 @@
"1198"
],
"x-ms-request-id": [
- "97296037-e9e3-479d-a77a-f91c8e5d9c6e"
+ "c3f382e8-13d6-46a0-ba1b-c6a195ae227f"
],
"x-ms-correlation-request-id": [
- "97296037-e9e3-479d-a77a-f91c8e5d9c6e"
+ "c3f382e8-13d6-46a0-ba1b-c6a195ae227f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193743Z:97296037-e9e3-479d-a77a-f91c8e5d9c6e"
+ "WESTUS:20200122T224237Z:c3f382e8-13d6-46a0-ba1b-c6a195ae227f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5379,7 +5379,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:43 GMT"
+ "Wed, 22 Jan 2020 22:42:36 GMT"
],
"Content-Length": [
"203"
@@ -5391,25 +5391,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}",
+ "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40d2fd31-0973-4218-9d42-b3b31d41943d"
+ "42dd407d-7579-4969-a8c8-72e87e7bf218"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5427,13 +5427,13 @@
"1196"
],
"x-ms-request-id": [
- "48a4ed9e-9a18-4c00-9f3b-3b9b2fcfeaef"
+ "1177417d-5e0a-4bf9-9db1-84383ab99f68"
],
"x-ms-correlation-request-id": [
- "48a4ed9e-9a18-4c00-9f3b-3b9b2fcfeaef"
+ "1177417d-5e0a-4bf9-9db1-84383ab99f68"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193744Z:48a4ed9e-9a18-4c00-9f3b-3b9b2fcfeaef"
+ "WESTUS:20200122T224238Z:1177417d-5e0a-4bf9-9db1-84383ab99f68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5442,7 +5442,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:44 GMT"
+ "Wed, 22 Jan 2020 22:42:37 GMT"
],
"Content-Length": [
"203"
@@ -5454,25 +5454,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"RiUQFY37noLI1dYJSCkhg9DwfrB3OmE5BugOeRKNLJs=\",\r\n \"secondaryKey\": \"wRVkB94BHCE3WmUzekcufzpt3y6Z8xAPMlAowPlVsUU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}",
+ "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Ho5EuuXOcYTuakmiVUnxguNivSpGPtO6OrFftDQqhaY=\",\r\n \"secondaryKey\": \"wM8Qf/CvcJ0mGlCKwmpzzM/K6R+xodvmIrtOIhTdzGU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca8bee2f-535d-413a-9296-0fbe4d4ec7e4"
+ "a82bf345-fcaa-47ad-b77e-c34b83f93552"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5490,13 +5490,13 @@
"1199"
],
"x-ms-request-id": [
- "3ded21ed-7260-4ade-92fe-eb8a1f80a5dd"
+ "52c6faca-310e-44d8-a9ed-94e7c8ad8859"
],
"x-ms-correlation-request-id": [
- "3ded21ed-7260-4ade-92fe-eb8a1f80a5dd"
+ "52c6faca-310e-44d8-a9ed-94e7c8ad8859"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193745Z:3ded21ed-7260-4ade-92fe-eb8a1f80a5dd"
+ "WESTUS:20200122T224240Z:52c6faca-310e-44d8-a9ed-94e7c8ad8859"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5505,7 +5505,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:45 GMT"
+ "Wed, 22 Jan 2020 22:42:39 GMT"
],
"Content-Length": [
"319"
@@ -5517,25 +5517,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Mon, 21 Oct 2019 19:37:45 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Wed, 22 Jan 2020 22:42:39 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f12e25b0-fab6-424f-b7c6-8e47a1e2c24c"
+ "4f867af2-6c80-42bf-be21-e8b74e2737b4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5553,13 +5553,13 @@
"14999"
],
"x-ms-request-id": [
- "52cee397-0aba-4161-999a-99f75c2eb8b2"
+ "16e05762-2f2b-45d4-8145-c358beb0206d"
],
"x-ms-correlation-request-id": [
- "52cee397-0aba-4161-999a-99f75c2eb8b2"
+ "16e05762-2f2b-45d4-8145-c358beb0206d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193746Z:52cee397-0aba-4161-999a-99f75c2eb8b2"
+ "WESTUS:20200122T224240Z:16e05762-2f2b-45d4-8145-c358beb0206d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5568,7 +5568,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:37:46 GMT"
+ "Wed, 22 Jan 2020 22:42:40 GMT"
],
"Expires": [
"-1"
@@ -5581,15 +5581,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJhN2NlOGEtYWM2OC00MTcyLWIwNjktZjBlN2EyNzcwNGM3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKaE4yTmxPR0V0WVdNMk9DMDBNVGN5TFdJd05qa3RaakJsTjJFeU56Y3dOR00zP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzMyNWE2NDktYWRmYi00NDI1LWFhN2UtYTAxYzJlMWU4ODg4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpNeU5XRTJORGt0WVdSbVlpMDBOREkxTFdGaE4yVXRZVEF4WXpKbE1XVTRPRGc0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5604,16 +5604,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11977"
],
"x-ms-request-id": [
- "2e459257-9d20-4e03-b2b3-41a38fae5f6d"
+ "fdb5df98-1db6-4d3c-8058-1099c8dd215b"
],
"x-ms-correlation-request-id": [
- "2e459257-9d20-4e03-b2b3-41a38fae5f6d"
+ "fdb5df98-1db6-4d3c-8058-1099c8dd215b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193819Z:2e459257-9d20-4e03-b2b3-41a38fae5f6d"
+ "WESTUS:20200122T224315Z:fdb5df98-1db6-4d3c-8058-1099c8dd215b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5622,7 +5622,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:19 GMT"
+ "Wed, 22 Jan 2020 22:43:15 GMT"
],
"Content-Length": [
"22"
@@ -5638,21 +5638,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e48c98f-4629-43b8-9df4-04b8fd614651"
+ "aa3c82f4-6cf6-41c3-95e0-f02a0a8b1f0d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5670,13 +5670,13 @@
"1192"
],
"x-ms-request-id": [
- "e5167129-1ec3-4041-993e-b7d9842eadde"
+ "fc2f381b-97ba-4749-bf2e-95e1be30fb22"
],
"x-ms-correlation-request-id": [
- "e5167129-1ec3-4041-993e-b7d9842eadde"
+ "fc2f381b-97ba-4749-bf2e-95e1be30fb22"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193820Z:e5167129-1ec3-4041-993e-b7d9842eadde"
+ "WESTUS:20200122T224316Z:fc2f381b-97ba-4749-bf2e-95e1be30fb22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5685,7 +5685,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:19 GMT"
+ "Wed, 22 Jan 2020 22:43:15 GMT"
],
"Content-Length": [
"172"
@@ -5697,25 +5697,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"secondaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"rights\": \"RegistryRead\"\r\n}",
+ "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"secondaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"rights\": \"RegistryRead\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58146e97-2dfb-41e8-b3bb-7bace65a5319"
+ "a1b17689-937e-4a35-90a8-babec71bd7f0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5733,13 +5733,13 @@
"1189"
],
"x-ms-request-id": [
- "0cf48343-54d2-4ee9-a917-add720678643"
+ "c4f5bbe9-2062-4e88-9cda-5261486216f7"
],
"x-ms-correlation-request-id": [
- "0cf48343-54d2-4ee9-a917-add720678643"
+ "c4f5bbe9-2062-4e88-9cda-5261486216f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193854Z:0cf48343-54d2-4ee9-a917-add720678643"
+ "WESTUS:20200122T224350Z:c4f5bbe9-2062-4e88-9cda-5261486216f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5748,7 +5748,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:53 GMT"
+ "Wed, 22 Jan 2020 22:43:49 GMT"
],
"Content-Length": [
"172"
@@ -5760,25 +5760,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"546llvjXA0Gn+OhlCBctp36buf50rkSOJEkqPpGGkEM=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n}",
+ "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"zVjK5k9St1uW/dv7sEIw5x8POZeDC3CqycGElPxOI+U=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29a1a4b5-0104-408f-9090-6f2e8150255e"
+ "6deed26e-c0c6-4dd1-8136-4d2578eb1c07"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5796,13 +5796,13 @@
"1186"
],
"x-ms-request-id": [
- "a982b102-48dd-427f-b303-62f3502b2693"
+ "5ad33844-5310-4d9a-9ba1-0dd1fae8480d"
],
"x-ms-correlation-request-id": [
- "a982b102-48dd-427f-b303-62f3502b2693"
+ "5ad33844-5310-4d9a-9ba1-0dd1fae8480d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193929Z:a982b102-48dd-427f-b303-62f3502b2693"
+ "WESTUS:20200122T224425Z:5ad33844-5310-4d9a-9ba1-0dd1fae8480d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5811,7 +5811,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:28 GMT"
+ "Wed, 22 Jan 2020 22:44:24 GMT"
],
"Content-Length": [
"172"
@@ -5823,19 +5823,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"giYYix5AEWIGaS2jwFZqrFkWgAzblKOKT0DUErDP5sk=\",\r\n \"secondaryKey\": \"gWCmVY+3JQvP32RYqjzv4bheLuBl2LH34vdEtCSUfMc=\",\r\n \"rights\": \"RegistryRead\"\r\n}",
+ "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"BXU9M6vuQE+fN5N9F46kODA4trplxqoCYvvV92zcQgM=\",\r\n \"secondaryKey\": \"DJqMpmFcE2F+Auepga55QVMEIcWaHN7dlTbWv4kPECo=\",\r\n \"rights\": \"RegistryRead\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDI3OTU3YTQtMTI0My00NzRiLTg1NTItOTkxOWE2NjBlNzY5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRJM09UVTNZVFF0TVRJME15MDBOelJpTFRnMU5USXRPVGt4T1dFMk5qQmxOelk1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjQ2YWQ5NTUtN2NmNi00NzlkLWFlZTktM2ExZDEwMzQ5OTU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpRMllXUTVOVFV0TjJObU5pMDBOemxrTFdGbFpUa3RNMkV4WkRFd016UTVPVFUyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5847,19 +5847,19 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11974"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "777f7014-1586-4bad-bd7c-c3e916f84328"
+ "196b27b3-3d3a-4f32-bb12-c75e24a22b96"
],
"x-ms-correlation-request-id": [
- "777f7014-1586-4bad-bd7c-c3e916f84328"
+ "196b27b3-3d3a-4f32-bb12-c75e24a22b96"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193853Z:777f7014-1586-4bad-bd7c-c3e916f84328"
+ "WESTUS:20200122T224349Z:196b27b3-3d3a-4f32-bb12-c75e24a22b96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5868,7 +5868,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:38:53 GMT"
+ "Wed, 22 Jan 2020 22:43:49 GMT"
],
"Content-Length": [
"22"
@@ -5884,15 +5884,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTUwNWRlNTctMTZjMS00ODM5LTlkZTYtZDJjMjUyYjIxZTQ3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRVd05XUmxOVGN0TVRaak1TMDBPRE01TFRsa1pUWXRaREpqTWpVeVlqSXhaVFEzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYzViOWU5NDItMWQxNy00MmVkLTk5Y2MtNWYxNjk4NzU4NDQx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWXpWaU9XVTVOREl0TVdReE55MDBNbVZrTFRrNVkyTXROV1l4TmprNE56VTRORFF4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5907,16 +5907,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11971"
],
"x-ms-request-id": [
- "77a1f6ad-fbd7-49c8-9a07-83d6f806b3c4"
+ "008ba917-9d38-4b45-9049-7cc3175ecfb1"
],
"x-ms-correlation-request-id": [
- "77a1f6ad-fbd7-49c8-9a07-83d6f806b3c4"
+ "008ba917-9d38-4b45-9049-7cc3175ecfb1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T193928Z:77a1f6ad-fbd7-49c8-9a07-83d6f806b3c4"
+ "WESTUS:20200122T224424Z:008ba917-9d38-4b45-9049-7cc3175ecfb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5925,7 +5925,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:39:28 GMT"
+ "Wed, 22 Jan 2020 22:44:23 GMT"
],
"Content-Length": [
"22"
@@ -5941,15 +5941,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNGUwYThjOTgtOWU2Mi00ZjgyLTgwMWYtNWE4MmJhODI4YmYw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkdVd1lUaGpPVGd0T1dVMk1pMDBaamd5TFRnd01XWXROV0U0TW1KaE9ESTRZbVl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM4ZDk4NGItYTJjNC00ZWIxLWFkNjYtZWQ5ZGVmOWM2MGM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTW1NNFpEazROR0l0WVRKak5DMDBaV0l4TFdGa05qWXRaV1E1WkdWbU9XTTJNR000P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -5960,20 +5960,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
"x-ms-request-id": [
- "32a85df7-ae4d-4295-8ecb-0dc3b23cfe57"
+ "96882b08-88ec-4c99-ac2c-01daf9d78d21"
],
"x-ms-correlation-request-id": [
- "32a85df7-ae4d-4295-8ecb-0dc3b23cfe57"
+ "96882b08-88ec-4c99-ac2c-01daf9d78d21"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194002Z:32a85df7-ae4d-4295-8ecb-0dc3b23cfe57"
+ "WESTUS:20200122T224459Z:96882b08-88ec-4c99-ac2c-01daf9d78d21"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5982,7 +5982,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:01 GMT"
+ "Wed, 22 Jan 2020 22:44:58 GMT"
],
"Content-Length": [
"22"
@@ -5998,15 +5998,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2Y1NDc1OGYtNjllNS00MWNjLTg1MjgtNjJkYWFiMDM3ODhm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJZMU5EYzFPR1l0TmpsbE5TMDBNV05qTFRnMU1qZ3ROakprWVdGaU1ETTNPRGhtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2Y1MjhkNGYtMjQyNy00MDljLWJkN2QtOTAyNmRkY2MyODgy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJZMU1qaGtOR1l0TWpReU55MDBNRGxqTFdKa04yUXRPVEF5Tm1Sa1kyTXlPRGd5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6017,20 +6017,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
"x-ms-request-id": [
- "f9306831-4f54-48a0-9a7f-c2ec3eb97a55"
+ "a5015193-b410-4e36-a970-f59125df8e6c"
],
"x-ms-correlation-request-id": [
- "f9306831-4f54-48a0-9a7f-c2ec3eb97a55"
+ "a5015193-b410-4e36-a970-f59125df8e6c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194036Z:f9306831-4f54-48a0-9a7f-c2ec3eb97a55"
+ "WESTUS:20200122T224533Z:a5015193-b410-4e36-a970-f59125df8e6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6039,7 +6039,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:40:35 GMT"
+ "Wed, 22 Jan 2020 22:45:33 GMT"
],
"Content-Length": [
"22"
@@ -6055,15 +6055,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmQ1OWM3ZDMtODA5OS00NDNhLWIwMzAtMDIyZjJhMDA4MWUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1RMU9XTTNaRE10T0RBNU9TMDBORE5oTFdJd016QXRNREl5WmpKaE1EQTRNV1V3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTg4ZmU1MTItMWE1Yi00Y2RiLWFiZDQtNGE2MWJlYTY0NmZm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RnNFptVTFNVEl0TVdFMVlpMDBZMlJpTFdGaVpEUXROR0UyTVdKbFlUWTBObVptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6074,20 +6074,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
"x-ms-request-id": [
- "cd282313-b080-40ee-aa3b-b87778cc07fc"
+ "6a59ac1f-8555-485b-9f1d-553d037287be"
],
"x-ms-correlation-request-id": [
- "cd282313-b080-40ee-aa3b-b87778cc07fc"
+ "6a59ac1f-8555-485b-9f1d-553d037287be"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194111Z:cd282313-b080-40ee-aa3b-b87778cc07fc"
+ "WESTUS:20200122T224608Z:6a59ac1f-8555-485b-9f1d-553d037287be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6096,7 +6096,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:10 GMT"
+ "Wed, 22 Jan 2020 22:46:07 GMT"
],
"Content-Length": [
"22"
@@ -6112,15 +6112,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmIwMGFjOTgtOWExMC00NzRmLTg2YmItNmQ0M2EzYTVmZmY3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1Jd01HRmpPVGd0T1dFeE1DMDBOelJtTFRnMlltSXRObVEwTTJFellUVm1abVkzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWRhYjdhZTktYWY4Ni00NTcxLWI3M2UtNjVjMTMxOGMwMjdh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dSaFlqZGhaVGt0WVdZNE5pMDBOVGN4TFdJM00yVXROalZqTVRNeE9HTXdNamRoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6135,16 +6135,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11956"
],
"x-ms-request-id": [
- "499417bc-9310-4f64-b730-0657c4c588b8"
+ "e219f6db-7e34-45b1-8c71-a83a1f6b4ed6"
],
"x-ms-correlation-request-id": [
- "499417bc-9310-4f64-b730-0657c4c588b8"
+ "e219f6db-7e34-45b1-8c71-a83a1f6b4ed6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194144Z:499417bc-9310-4f64-b730-0657c4c588b8"
+ "WESTUS:20200122T224642Z:e219f6db-7e34-45b1-8c71-a83a1f6b4ed6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6153,7 +6153,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:41:44 GMT"
+ "Wed, 22 Jan 2020 22:46:41 GMT"
],
"Content-Length": [
"22"
@@ -6169,15 +6169,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2QzNTg4NmQtZDk2My00MmRjLWI2NjQtNTczN2IyZGE2Nzcx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJRek5UZzRObVF0WkRrMk15MDBNbVJqTFdJMk5qUXROVGN6TjJJeVpHRTJOemN4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODFmNTUwMTUtMzJmNS00YzFkLWJiNzUtODZlNDc3ZjZmOGJk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RGbU5UVXdNVFV0TXpKbU5TMDBZekZrTFdKaU56VXRPRFpsTkRjM1pqWm1PR0prP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6189,19 +6189,19 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11952"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "4c477086-ca53-42c5-805f-f5c6c8cd7fb8"
+ "214daf03-30cb-41d1-b24f-161d4b9426b5"
],
"x-ms-correlation-request-id": [
- "4c477086-ca53-42c5-805f-f5c6c8cd7fb8"
+ "214daf03-30cb-41d1-b24f-161d4b9426b5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194219Z:4c477086-ca53-42c5-805f-f5c6c8cd7fb8"
+ "WESTUS:20200122T224716Z:214daf03-30cb-41d1-b24f-161d4b9426b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6210,7 +6210,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:18 GMT"
+ "Wed, 22 Jan 2020 22:47:16 GMT"
],
"Content-Length": [
"22"
@@ -6226,15 +6226,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjA3ODYzMzAtNWIzYy00ZDk5LWI2YTEtMjFhOWUxY2I0ODhk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBM09EWXpNekF0TldJell5MDBaRGs1TFdJMllURXRNakZoT1dVeFkySTBPRGhrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWJiY2RiNDUtZTFmZi00NDIzLTljMzItNjUyODY3MTg2MmNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldKaVkyUmlORFV0WlRGbVppMDBOREl6TFRsak16SXROalV5T0RZM01UZzJNbU5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6249,16 +6249,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11948"
],
"x-ms-request-id": [
- "8271f951-ef94-4d03-be82-37a870b40b74"
+ "40ea120f-9dfa-4ead-8438-afc7421e125e"
],
"x-ms-correlation-request-id": [
- "8271f951-ef94-4d03-be82-37a870b40b74"
+ "40ea120f-9dfa-4ead-8438-afc7421e125e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194253Z:8271f951-ef94-4d03-be82-37a870b40b74"
+ "WESTUS:20200122T224751Z:40ea120f-9dfa-4ead-8438-afc7421e125e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6267,7 +6267,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:42:52 GMT"
+ "Wed, 22 Jan 2020 22:47:50 GMT"
],
"Content-Length": [
"22"
@@ -6283,15 +6283,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfY2VjMjcxZmItMTRlNC00YmEwLWFlNGItZGNiNTA1YjgwOWQ1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJWak1qY3habUl0TVRSbE5DMDBZbUV3TFdGbE5HSXRaR05pTlRBMVlqZ3dPV1ExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTdkZDYxYjUtOGQxYi00YWMyLTllMzYtM2M5OTc1YTEzNTlh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRka1pEWXhZalV0T0dReFlpMDBZV015TFRsbE16WXRNMk01T1RjMVlURXpOVGxoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6302,20 +6302,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
- ],
"x-ms-request-id": [
- "1f3f612b-c280-4ba1-a69e-fd76c13d8d1f"
+ "84f8e421-53e4-470e-808e-d2cdf16fc917"
],
"x-ms-correlation-request-id": [
- "1f3f612b-c280-4ba1-a69e-fd76c13d8d1f"
+ "84f8e421-53e4-470e-808e-d2cdf16fc917"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194327Z:1f3f612b-c280-4ba1-a69e-fd76c13d8d1f"
+ "WESTUS:20200122T224825Z:84f8e421-53e4-470e-808e-d2cdf16fc917"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6324,7 +6324,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:27 GMT"
+ "Wed, 22 Jan 2020 22:48:24 GMT"
],
"Content-Length": [
"22"
@@ -6340,21 +6340,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8b1c987-7e55-4766-8ae5-3a479e11d1c6"
+ "9a6ae351-cecb-49df-86ec-cfa3abc1b3e6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -6378,13 +6378,13 @@
"4988"
],
"x-ms-request-id": [
- "ffea270a-2887-4bfa-9132-5431bce4f341"
+ "75029012-dc33-47e1-816c-4d31fddc75a7"
],
"x-ms-correlation-request-id": [
- "ffea270a-2887-4bfa-9132-5431bce4f341"
+ "75029012-dc33-47e1-816c-4d31fddc75a7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194329Z:ffea270a-2887-4bfa-9132-5431bce4f341"
+ "WESTUS:20200122T224828Z:75029012-dc33-47e1-816c-4d31fddc75a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6393,7 +6393,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:29 GMT"
+ "Wed, 22 Jan 2020 22:48:27 GMT"
],
"Content-Length": [
"1676"
@@ -6405,25 +6405,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fa86b3c-9c13-4d91-a9b5-39e5bf2ea814"
+ "96afa3d5-b0ac-4e1c-ab06-a348c09db6e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -6440,20 +6440,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "4987"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "4987"
+ ],
"x-ms-request-id": [
- "f4c822d4-8cf0-42c5-afff-b4302c043e8c"
+ "7a04a12a-978f-4103-b8c2-1cbfe79cb37d"
],
"x-ms-correlation-request-id": [
- "f4c822d4-8cf0-42c5-afff-b4302c043e8c"
+ "7a04a12a-978f-4103-b8c2-1cbfe79cb37d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194331Z:f4c822d4-8cf0-42c5-afff-b4302c043e8c"
+ "WESTUS:20200122T224829Z:7a04a12a-978f-4103-b8c2-1cbfe79cb37d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6462,7 +6462,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:31 GMT"
+ "Wed, 22 Jan 2020 22:48:28 GMT"
],
"Content-Length": [
"1692"
@@ -6474,25 +6474,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "090e83ad-4bf8-4109-865a-bc61abfeeeda"
+ "21eeb581-0577-44af-990e-523a306d6ca4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -6516,13 +6516,13 @@
"4986"
],
"x-ms-request-id": [
- "5d6be315-e640-4dda-9a42-3d216c68f963"
+ "3a919e5b-42f0-4f51-8c7f-49a207f465c0"
],
"x-ms-correlation-request-id": [
- "5d6be315-e640-4dda-9a42-3d216c68f963"
+ "3a919e5b-42f0-4f51-8c7f-49a207f465c0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194332Z:5d6be315-e640-4dda-9a42-3d216c68f963"
+ "WESTUS:20200122T224831Z:3a919e5b-42f0-4f51-8c7f-49a207f465c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6531,7 +6531,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:32 GMT"
+ "Wed, 22 Jan 2020 22:48:31 GMT"
],
"Content-Length": [
"1676"
@@ -6543,25 +6543,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778\",\r\n \"name\": \"ps6778\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9672\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6778.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6778\",\r\n \"endpoint\": \"sb://iothub-ns-ps6778-2350986-7e39545b38.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678\",\r\n \"name\": \"ps1678\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps4732\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1678.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1678\",\r\n \"endpoint\": \"sb://iothub-ns-ps1678-2813663-7db51552e8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778/failover?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3NzgvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678/failover?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2NzgvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"failoverRegion\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b29d23e-ba22-462c-80a1-e54b0db800f0"
+ "c7729aac-f8f3-4ae8-974d-0de3efc001ff"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
],
"Content-Type": [
@@ -6579,13 +6579,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih"
],
"Retry-After": [
"15"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -6594,13 +6594,13 @@
"1182"
],
"x-ms-request-id": [
- "a29ed82d-4233-4b48-8428-247362f688eb"
+ "af02569c-0774-4533-9400-abfcd4b9869c"
],
"x-ms-correlation-request-id": [
- "a29ed82d-4233-4b48-8428-247362f688eb"
+ "af02569c-0774-4533-9400-abfcd4b9869c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194335Z:a29ed82d-4233-4b48-8428-247362f688eb"
+ "WESTUS:20200122T224833Z:af02569c-0774-4533-9400-abfcd4b9869c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6609,7 +6609,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:35 GMT"
+ "Wed, 22 Jan 2020 22:48:33 GMT"
],
"Content-Length": [
"4"
@@ -6625,15 +6625,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6648,16 +6648,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11935"
],
"x-ms-request-id": [
- "caee2feb-8526-4abb-a32a-3737bf336d3b"
+ "762827c9-4e36-4783-b798-9ba994c8749f"
],
"x-ms-correlation-request-id": [
- "caee2feb-8526-4abb-a32a-3737bf336d3b"
+ "762827c9-4e36-4783-b798-9ba994c8749f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194350Z:caee2feb-8526-4abb-a32a-3737bf336d3b"
+ "WESTUS:20200122T224849Z:762827c9-4e36-4783-b798-9ba994c8749f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6666,7 +6666,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:43:50 GMT"
+ "Wed, 22 Jan 2020 22:48:48 GMT"
],
"Content-Length": [
"20"
@@ -6682,15 +6682,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6705,16 +6705,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11934"
],
"x-ms-request-id": [
- "6ea1dc5b-ed15-4e33-8410-f9c77599b5b7"
+ "48e1133f-e642-4342-9abc-bad1392380bf"
],
"x-ms-correlation-request-id": [
- "6ea1dc5b-ed15-4e33-8410-f9c77599b5b7"
+ "48e1133f-e642-4342-9abc-bad1392380bf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194405Z:6ea1dc5b-ed15-4e33-8410-f9c77599b5b7"
+ "WESTUS:20200122T224904Z:48e1133f-e642-4342-9abc-bad1392380bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6723,7 +6723,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:44:04 GMT"
+ "Wed, 22 Jan 2020 22:49:04 GMT"
],
"Content-Length": [
"20"
@@ -6739,15 +6739,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6762,16 +6762,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11933"
],
"x-ms-request-id": [
- "7b75773e-eddc-4b29-a331-9c0a577f1be3"
+ "efdb5a91-bd4b-4433-89e1-ac14f68d1b76"
],
"x-ms-correlation-request-id": [
- "7b75773e-eddc-4b29-a331-9c0a577f1be3"
+ "efdb5a91-bd4b-4433-89e1-ac14f68d1b76"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194420Z:7b75773e-eddc-4b29-a331-9c0a577f1be3"
+ "WESTUS:20200122T224919Z:efdb5a91-bd4b-4433-89e1-ac14f68d1b76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6780,7 +6780,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:44:20 GMT"
+ "Wed, 22 Jan 2020 22:49:19 GMT"
],
"Content-Length": [
"20"
@@ -6796,15 +6796,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6815,20 +6815,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
- ],
"x-ms-request-id": [
- "3f83f543-1a8d-440b-a916-918ccebf0959"
+ "15581321-20e2-4c94-9616-9862769e4af9"
],
"x-ms-correlation-request-id": [
- "3f83f543-1a8d-440b-a916-918ccebf0959"
+ "15581321-20e2-4c94-9616-9862769e4af9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194436Z:3f83f543-1a8d-440b-a916-918ccebf0959"
+ "WESTUS:20200122T224935Z:15581321-20e2-4c94-9616-9862769e4af9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6837,7 +6837,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:44:36 GMT"
+ "Wed, 22 Jan 2020 22:49:34 GMT"
],
"Content-Length": [
"20"
@@ -6853,15 +6853,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6872,20 +6872,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11931"
+ ],
"x-ms-request-id": [
- "a4c0a61e-4063-4e26-8a26-16a7f6b34d21"
+ "aaca41a0-5685-4257-bd2b-4512b4572d64"
],
"x-ms-correlation-request-id": [
- "a4c0a61e-4063-4e26-8a26-16a7f6b34d21"
+ "aaca41a0-5685-4257-bd2b-4512b4572d64"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194451Z:a4c0a61e-4063-4e26-8a26-16a7f6b34d21"
+ "WESTUS:20200122T224950Z:aaca41a0-5685-4257-bd2b-4512b4572d64"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6894,7 +6894,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:44:50 GMT"
+ "Wed, 22 Jan 2020 22:49:50 GMT"
],
"Content-Length": [
"20"
@@ -6910,15 +6910,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6933,16 +6933,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11930"
],
"x-ms-request-id": [
- "10c2583a-15d6-4c5f-834c-34e2e87dfd7e"
+ "6041ae84-9e95-4840-a0f2-25f4e09db938"
],
"x-ms-correlation-request-id": [
- "10c2583a-15d6-4c5f-834c-34e2e87dfd7e"
+ "6041ae84-9e95-4840-a0f2-25f4e09db938"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194506Z:10c2583a-15d6-4c5f-834c-34e2e87dfd7e"
+ "WESTUS:20200122T225005Z:6041ae84-9e95-4840-a0f2-25f4e09db938"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6951,7 +6951,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:45:05 GMT"
+ "Wed, 22 Jan 2020 22:50:05 GMT"
],
"Content-Length": [
"20"
@@ -6967,15 +6967,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -6990,16 +6990,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "11929"
],
"x-ms-request-id": [
- "27abb7e4-b6f2-4f94-960e-264382629666"
+ "26cde79c-53ce-42f6-aab3-49780a25a3a9"
],
"x-ms-correlation-request-id": [
- "27abb7e4-b6f2-4f94-960e-264382629666"
+ "26cde79c-53ce-42f6-aab3-49780a25a3a9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194521Z:27abb7e4-b6f2-4f94-960e-264382629666"
+ "WESTUS:20200122T225021Z:26cde79c-53ce-42f6-aab3-49780a25a3a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7008,7 +7008,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:45:21 GMT"
+ "Wed, 22 Jan 2020 22:50:20 GMT"
],
"Content-Length": [
"20"
@@ -7024,15 +7024,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7047,16 +7047,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11928"
],
"x-ms-request-id": [
- "c036f28f-a4cf-4e06-87b7-7db9ead40ac3"
+ "bc205cd9-d18a-4749-8614-ab40bcae8237"
],
"x-ms-correlation-request-id": [
- "c036f28f-a4cf-4e06-87b7-7db9ead40ac3"
+ "bc205cd9-d18a-4749-8614-ab40bcae8237"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194537Z:c036f28f-a4cf-4e06-87b7-7db9ead40ac3"
+ "WESTUS:20200122T225036Z:bc205cd9-d18a-4749-8614-ab40bcae8237"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7065,7 +7065,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:45:36 GMT"
+ "Wed, 22 Jan 2020 22:50:35 GMT"
],
"Content-Length": [
"20"
@@ -7081,15 +7081,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7104,16 +7104,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
+ "11927"
],
"x-ms-request-id": [
- "0d1e5751-3071-418c-b4c6-cafcd54610bf"
+ "64310722-9e1a-4edc-9563-c0327fdef9aa"
],
"x-ms-correlation-request-id": [
- "0d1e5751-3071-418c-b4c6-cafcd54610bf"
+ "64310722-9e1a-4edc-9563-c0327fdef9aa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194552Z:0d1e5751-3071-418c-b4c6-cafcd54610bf"
+ "WESTUS:20200122T225051Z:64310722-9e1a-4edc-9563-c0327fdef9aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7122,7 +7122,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:45:51 GMT"
+ "Wed, 22 Jan 2020 22:50:50 GMT"
],
"Content-Length": [
"20"
@@ -7138,15 +7138,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7157,20 +7157,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
- ],
"x-ms-request-id": [
- "74b7d4a1-8fa5-4250-b8b6-4c00c5325d4d"
+ "91c490d7-6e48-425b-9eee-ff3088fb8edb"
],
"x-ms-correlation-request-id": [
- "74b7d4a1-8fa5-4250-b8b6-4c00c5325d4d"
+ "91c490d7-6e48-425b-9eee-ff3088fb8edb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194607Z:74b7d4a1-8fa5-4250-b8b6-4c00c5325d4d"
+ "WESTUS:20200122T225107Z:91c490d7-6e48-425b-9eee-ff3088fb8edb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7179,7 +7179,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:46:06 GMT"
+ "Wed, 22 Jan 2020 22:51:06 GMT"
],
"Content-Length": [
"20"
@@ -7195,15 +7195,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7214,20 +7214,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11925"
+ ],
"x-ms-request-id": [
- "dfe46004-d8d1-4ad8-99e8-a345fc4ccdf9"
+ "6609b154-f2a4-4ab3-9787-877ec6c8584c"
],
"x-ms-correlation-request-id": [
- "dfe46004-d8d1-4ad8-99e8-a345fc4ccdf9"
+ "6609b154-f2a4-4ab3-9787-877ec6c8584c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194622Z:dfe46004-d8d1-4ad8-99e8-a345fc4ccdf9"
+ "WESTUS:20200122T225122Z:6609b154-f2a4-4ab3-9787-877ec6c8584c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7236,7 +7236,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:46:22 GMT"
+ "Wed, 22 Jan 2020 22:51:22 GMT"
],
"Content-Length": [
"20"
@@ -7252,15 +7252,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7275,16 +7275,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
+ "11924"
],
"x-ms-request-id": [
- "cdda5f45-9ee2-4274-9548-179d21601c8a"
+ "658112fd-2216-4d22-b01d-bcfbd644f15b"
],
"x-ms-correlation-request-id": [
- "cdda5f45-9ee2-4274-9548-179d21601c8a"
+ "658112fd-2216-4d22-b01d-bcfbd644f15b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194638Z:cdda5f45-9ee2-4274-9548-179d21601c8a"
+ "WESTUS:20200122T225137Z:658112fd-2216-4d22-b01d-bcfbd644f15b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7293,7 +7293,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:46:37 GMT"
+ "Wed, 22 Jan 2020 22:51:37 GMT"
],
"Content-Length": [
"20"
@@ -7309,15 +7309,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7332,16 +7332,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
+ "11922"
],
"x-ms-request-id": [
- "62da65a8-79f8-4d26-ae78-5868992b17f3"
+ "71156d38-897e-4a35-be63-ae36a0ea7195"
],
"x-ms-correlation-request-id": [
- "62da65a8-79f8-4d26-ae78-5868992b17f3"
+ "71156d38-897e-4a35-be63-ae36a0ea7195"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194653Z:62da65a8-79f8-4d26-ae78-5868992b17f3"
+ "WESTUS:20200122T225152Z:71156d38-897e-4a35-be63-ae36a0ea7195"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7350,7 +7350,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:46:52 GMT"
+ "Wed, 22 Jan 2020 22:51:52 GMT"
],
"Content-Length": [
"20"
@@ -7366,15 +7366,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7389,16 +7389,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
+ "11921"
],
"x-ms-request-id": [
- "bacb511e-a1eb-4dde-b462-c8efbb0b1cb3"
+ "71190d47-90cc-4981-8c02-f0a479c2731b"
],
"x-ms-correlation-request-id": [
- "bacb511e-a1eb-4dde-b462-c8efbb0b1cb3"
+ "71190d47-90cc-4981-8c02-f0a479c2731b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194708Z:bacb511e-a1eb-4dde-b462-c8efbb0b1cb3"
+ "WESTUS:20200122T225208Z:71190d47-90cc-4981-8c02-f0a479c2731b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7407,7 +7407,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:47:08 GMT"
+ "Wed, 22 Jan 2020 22:52:07 GMT"
],
"Content-Length": [
"20"
@@ -7423,15 +7423,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7446,16 +7446,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
+ "11920"
],
"x-ms-request-id": [
- "72dc92a4-1928-4259-a0a8-30fb8ee7c163"
+ "66adea23-206d-4b3e-b2c5-d0efc84acc27"
],
"x-ms-correlation-request-id": [
- "72dc92a4-1928-4259-a0a8-30fb8ee7c163"
+ "66adea23-206d-4b3e-b2c5-d0efc84acc27"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194723Z:72dc92a4-1928-4259-a0a8-30fb8ee7c163"
+ "WESTUS:20200122T225223Z:66adea23-206d-4b3e-b2c5-d0efc84acc27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7464,7 +7464,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:47:23 GMT"
+ "Wed, 22 Jan 2020 22:52:22 GMT"
],
"Content-Length": [
"20"
@@ -7480,15 +7480,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7499,20 +7499,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11919"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
- ],
"x-ms-request-id": [
- "e8386a86-def5-4f93-bb82-0c23083620c2"
+ "c3354dd2-c87d-4fc8-ad52-680e46750847"
],
"x-ms-correlation-request-id": [
- "e8386a86-def5-4f93-bb82-0c23083620c2"
+ "c3354dd2-c87d-4fc8-ad52-680e46750847"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194739Z:e8386a86-def5-4f93-bb82-0c23083620c2"
+ "WESTUS:20200122T225238Z:c3354dd2-c87d-4fc8-ad52-680e46750847"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7521,7 +7521,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:47:39 GMT"
+ "Wed, 22 Jan 2020 22:52:37 GMT"
],
"Content-Length": [
"20"
@@ -7537,15 +7537,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7556,20 +7556,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
"x-ms-request-id": [
- "b6b952c4-8027-4a54-a585-0d03a256eb11"
+ "0af98a6c-aa8f-4423-a5b4-1a9607dd49c6"
],
"x-ms-correlation-request-id": [
- "b6b952c4-8027-4a54-a585-0d03a256eb11"
+ "0af98a6c-aa8f-4423-a5b4-1a9607dd49c6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194754Z:b6b952c4-8027-4a54-a585-0d03a256eb11"
+ "WESTUS:20200122T225254Z:0af98a6c-aa8f-4423-a5b4-1a9607dd49c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7578,7 +7578,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:47:53 GMT"
+ "Wed, 22 Jan 2020 22:52:54 GMT"
],
"Content-Length": [
"20"
@@ -7594,15 +7594,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7617,16 +7617,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
+ "11917"
],
"x-ms-request-id": [
- "51013335-7a49-4ff6-a4b1-04465bb4d092"
+ "22588f4f-93b1-4661-b56d-e8cc4401eebf"
],
"x-ms-correlation-request-id": [
- "51013335-7a49-4ff6-a4b1-04465bb4d092"
+ "22588f4f-93b1-4661-b56d-e8cc4401eebf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194809Z:51013335-7a49-4ff6-a4b1-04465bb4d092"
+ "WESTUS:20200122T225309Z:22588f4f-93b1-4661-b56d-e8cc4401eebf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7635,7 +7635,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:48:08 GMT"
+ "Wed, 22 Jan 2020 22:53:09 GMT"
],
"Content-Length": [
"20"
@@ -7651,15 +7651,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7674,16 +7674,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
+ "11916"
],
"x-ms-request-id": [
- "2dd82ae3-1f9f-4a4b-8aba-3367c7811fda"
+ "ef20e04f-3184-436e-a448-98a0644e0db4"
],
"x-ms-correlation-request-id": [
- "2dd82ae3-1f9f-4a4b-8aba-3367c7811fda"
+ "ef20e04f-3184-436e-a448-98a0644e0db4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194824Z:2dd82ae3-1f9f-4a4b-8aba-3367c7811fda"
+ "WESTUS:20200122T225324Z:ef20e04f-3184-436e-a448-98a0644e0db4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7692,7 +7692,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:48:24 GMT"
+ "Wed, 22 Jan 2020 22:53:24 GMT"
],
"Content-Length": [
"20"
@@ -7708,15 +7708,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7731,16 +7731,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
+ "11915"
],
"x-ms-request-id": [
- "503c0323-7940-413c-951d-ffe0af01fab7"
+ "363e4252-5c04-4b43-8649-7d4a42faf4df"
],
"x-ms-correlation-request-id": [
- "503c0323-7940-413c-951d-ffe0af01fab7"
+ "363e4252-5c04-4b43-8649-7d4a42faf4df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194840Z:503c0323-7940-413c-951d-ffe0af01fab7"
+ "WESTUS:20200122T225339Z:363e4252-5c04-4b43-8649-7d4a42faf4df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7749,7 +7749,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:48:40 GMT"
+ "Wed, 22 Jan 2020 22:53:39 GMT"
],
"Content-Length": [
"20"
@@ -7765,15 +7765,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7788,16 +7788,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
+ "11914"
],
"x-ms-request-id": [
- "0dfc754e-32da-4a9d-9438-81a8a7cdc830"
+ "9f38632d-0841-4f41-9edc-a78a6170bd71"
],
"x-ms-correlation-request-id": [
- "0dfc754e-32da-4a9d-9438-81a8a7cdc830"
+ "9f38632d-0841-4f41-9edc-a78a6170bd71"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194855Z:0dfc754e-32da-4a9d-9438-81a8a7cdc830"
+ "WESTUS:20200122T225354Z:9f38632d-0841-4f41-9edc-a78a6170bd71"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7806,7 +7806,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:48:55 GMT"
+ "Wed, 22 Jan 2020 22:53:54 GMT"
],
"Content-Length": [
"20"
@@ -7822,15 +7822,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7841,20 +7841,20 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11913"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
- ],
"x-ms-request-id": [
- "c77bc65b-81ca-4b89-898b-e3f8b6f2cb47"
+ "2d4b94a1-0296-4a1d-938c-04ae91caceb0"
],
"x-ms-correlation-request-id": [
- "c77bc65b-81ca-4b89-898b-e3f8b6f2cb47"
+ "2d4b94a1-0296-4a1d-938c-04ae91caceb0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194910Z:c77bc65b-81ca-4b89-898b-e3f8b6f2cb47"
+ "WESTUS:20200122T225410Z:2d4b94a1-0296-4a1d-938c-04ae91caceb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7863,7 +7863,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:10 GMT"
+ "Wed, 22 Jan 2020 22:54:09 GMT"
],
"Content-Length": [
"20"
@@ -7879,15 +7879,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7898,20 +7898,647 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-request-id": [
- "ddbdd0df-2762-4dcf-b466-172ddacef4a0"
- ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11912"
+ ],
+ "x-ms-request-id": [
+ "d6b0386e-f16c-4684-b488-e11aedfc7cca"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6b0386e-f16c-4684-b488-e11aedfc7cca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225425Z:d6b0386e-f16c-4684-b488-e11aedfc7cca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:54:25 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11911"
+ ],
+ "x-ms-request-id": [
+ "6c3f72c9-3bdc-4430-a0d9-1af66bc9fca5"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c3f72c9-3bdc-4430-a0d9-1af66bc9fca5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225440Z:6c3f72c9-3bdc-4430-a0d9-1af66bc9fca5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:54:40 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11910"
+ ],
+ "x-ms-request-id": [
+ "5cc55486-518a-41bc-be66-63d57905d6f9"
+ ],
+ "x-ms-correlation-request-id": [
+ "5cc55486-518a-41bc-be66-63d57905d6f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225455Z:5cc55486-518a-41bc-be66-63d57905d6f9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:54:55 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11909"
+ ],
+ "x-ms-request-id": [
+ "db836173-2832-4002-92eb-6ef8dc52c2b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "db836173-2832-4002-92eb-6ef8dc52c2b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225511Z:db836173-2832-4002-92eb-6ef8dc52c2b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:55:10 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11908"
+ ],
+ "x-ms-request-id": [
+ "d947272b-fdc1-4298-ac8f-7656c83f990b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d947272b-fdc1-4298-ac8f-7656c83f990b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225526Z:d947272b-fdc1-4298-ac8f-7656c83f990b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:55:25 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11907"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "26b3b56f-f10e-412e-985c-5e17ce051d16"
+ ],
+ "x-ms-correlation-request-id": [
+ "26b3b56f-f10e-412e-985c-5e17ce051d16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225541Z:26b3b56f-f10e-412e-985c-5e17ce051d16"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:55:40 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11906"
+ ],
+ "x-ms-request-id": [
+ "a5b3687c-1c35-4783-acf1-afa93d9948a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5b3687c-1c35-4783-acf1-afa93d9948a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225556Z:a5b3687c-1c35-4783-acf1-afa93d9948a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:55:55 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11905"
+ ],
+ "x-ms-request-id": [
+ "40634f45-87d8-4b60-b4c4-0098dd377b53"
+ ],
+ "x-ms-correlation-request-id": [
+ "40634f45-87d8-4b60-b4c4-0098dd377b53"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225611Z:40634f45-87d8-4b60-b4c4-0098dd377b53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:56:11 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11904"
+ ],
+ "x-ms-request-id": [
+ "4fba24b6-1c3c-4468-adf7-8d3ea21fc8e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "4fba24b6-1c3c-4468-adf7-8d3ea21fc8e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225627Z:4fba24b6-1c3c-4468-adf7-8d3ea21fc8e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:56:26 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11903"
+ ],
+ "x-ms-request-id": [
+ "71907eee-1779-4459-b17e-592a07a13a31"
+ ],
+ "x-ms-correlation-request-id": [
+ "71907eee-1779-4459-b17e-592a07a13a31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225642Z:71907eee-1779-4459-b17e-592a07a13a31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:56:41 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11902"
+ ],
+ "x-ms-request-id": [
+ "248c59e4-3911-49bd-806c-794273c144e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "248c59e4-3911-49bd-806c-794273c144e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200122T225657Z:248c59e4-3911-49bd-806c-794273c144e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jan 2020 22:56:56 GMT"
+ ],
+ "Content-Length": [
+ "20"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11901"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "5d646a7f-701f-4c2a-a123-3974a17cfb0b"
+ ],
"x-ms-correlation-request-id": [
- "ddbdd0df-2762-4dcf-b466-172ddacef4a0"
+ "5d646a7f-701f-4c2a-a123-3974a17cfb0b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194925Z:ddbdd0df-2762-4dcf-b466-172ddacef4a0"
+ "WESTUS:20200122T225712Z:5d646a7f-701f-4c2a-a123-3974a17cfb0b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7920,7 +8547,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:24 GMT"
+ "Wed, 22 Jan 2020 22:57:12 GMT"
],
"Content-Length": [
"22"
@@ -7936,15 +8563,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdNd1ltTTNNREl0T1RnNU15MDBPV013TFRobFlUWXRNamc1T1dJMU5XVXpNREExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpFeVkyVXdZakV0T1RsaE5TMDBPR1JqTFdFNE5XVXRZbVF6TlRoak56WTRabVUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -7956,7 +8583,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGMwYmM3MDItOTg5My00OWMwLThlYTYtMjg5OWI1NWUzMDA1?api-version=2019-07-01-preview&operationSource=os_ih"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjEyY2UwYjEtOTlhNS00OGRjLWE4NWUtYmQzNThjNzY4ZmU0?api-version=2019-07-01-preview&operationSource=os_ih"
],
"Retry-After": [
"15"
@@ -7965,16 +8592,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
+ "11900"
],
"x-ms-request-id": [
- "ca1bb5d7-ae09-49dc-ac12-ec99f3a5e232"
+ "f9827bf6-1b80-4e86-9283-832cbd61155d"
],
"x-ms-correlation-request-id": [
- "ca1bb5d7-ae09-49dc-ac12-ec99f3a5e232"
+ "f9827bf6-1b80-4e86-9283-832cbd61155d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194926Z:ca1bb5d7-ae09-49dc-ac12-ec99f3a5e232"
+ "WESTUS:20200122T225713Z:f9827bf6-1b80-4e86-9283-832cbd61155d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7983,7 +8610,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:26 GMT"
+ "Wed, 22 Jan 2020 22:57:12 GMT"
],
"Expires": [
"-1"
@@ -7996,21 +8623,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9672/providers/Microsoft.Devices/IotHubs/ps6778?api-version=2019-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY3Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4732/providers/Microsoft.Devices/IotHubs/ps1678?api-version=2019-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDczMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE2Nzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d028d71e-b294-4a7e-8824-ccd5cb5d38ae"
+ "08811df2-ab86-4259-932e-43cb32365838"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -8022,13 +8649,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQ5MDI3MTctNmYzMi00ZjRkLWExMTUtZjk4NjRkNTdmYjJh?api-version=2019-07-01-preview&operationSource=os_ih"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTUwNmMwMzQtOTQ1YS00NTZjLWE0MjgtMTAxZGZmMzY2MmQw?api-version=2019-07-01-preview&operationSource=os_ih"
],
"Retry-After": [
"15"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQ5MDI3MTctNmYzMi00ZjRkLWExMTUtZjk4NjRkNTdmYjJh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTUwNmMwMzQtOTQ1YS00NTZjLWE0MjgtMTAxZGZmMzY2MmQw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8037,13 +8664,13 @@
"14998"
],
"x-ms-request-id": [
- "f4374d92-c91c-41be-a206-73a350d4f171"
+ "e3338356-61f7-4989-9667-67c6ffa5de47"
],
"x-ms-correlation-request-id": [
- "f4374d92-c91c-41be-a206-73a350d4f171"
+ "e3338356-61f7-4989-9667-67c6ffa5de47"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194927Z:f4374d92-c91c-41be-a206-73a350d4f171"
+ "WESTUS:20200122T225714Z:e3338356-61f7-4989-9667-67c6ffa5de47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8052,7 +8679,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:27 GMT"
+ "Wed, 22 Jan 2020 22:57:13 GMT"
],
"Content-Length": [
"4"
@@ -8068,15 +8695,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQ5MDI3MTctNmYzMi00ZjRkLWExMTUtZjk4NjRkNTdmYjJh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRRNU1ESTNNVGN0Tm1Zek1pMDBaalJrTFdFeE1UVXRaams0TmpSa05UZG1ZakpoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTUwNmMwMzQtOTQ1YS00NTZjLWE0MjgtMTAxZGZmMzY2MmQw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRVd05tTXdNelF0T1RRMVlTMDBOVFpqTFdFME1qZ3RNVEF4WkdabU16WTJNbVF3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -8091,16 +8718,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
+ "11898"
],
"x-ms-request-id": [
- "b67ae927-0960-460f-944a-981f122841cb"
+ "900d0b03-f4bd-42e6-ab26-b2d55830b61e"
],
"x-ms-correlation-request-id": [
- "b67ae927-0960-460f-944a-981f122841cb"
+ "900d0b03-f4bd-42e6-ab26-b2d55830b61e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194942Z:b67ae927-0960-460f-944a-981f122841cb"
+ "WESTUS:20200122T225729Z:900d0b03-f4bd-42e6-ab26-b2d55830b61e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8109,7 +8736,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:42 GMT"
+ "Wed, 22 Jan 2020 22:57:28 GMT"
],
"Content-Length": [
"22"
@@ -8125,15 +8752,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQ5MDI3MTctNmYzMi00ZjRkLWExMTUtZjk4NjRkNTdmYjJh?api-version=2019-07-01-preview&operationSource=os_ih",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRRNU1ESTNNVGN0Tm1Zek1pMDBaalJrTFdFeE1UVXRaams0TmpSa05UZG1ZakpoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=",
+ "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTUwNmMwMzQtOTQ1YS00NTZjLWE0MjgtMTAxZGZmMzY2MmQw?api-version=2019-07-01-preview&operationSource=os_ih",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRVd05tTXdNelF0T1RRMVlTMDBOVFpqTFdFME1qZ3RNVEF4WkdabU16WTJNbVF3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.01",
+ "FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0"
]
},
@@ -8145,7 +8772,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQ5MDI3MTctNmYzMi00ZjRkLWExMTUtZjk4NjRkNTdmYjJh?api-version=2019-07-01-preview&operationSource=os_ih"
+ "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTUwNmMwMzQtOTQ1YS00NTZjLWE0MjgtMTAxZGZmMzY2MmQw?api-version=2019-07-01-preview&operationSource=os_ih"
],
"Retry-After": [
"15"
@@ -8154,16 +8781,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
+ "11897"
],
"x-ms-request-id": [
- "59f2cee3-112f-4733-8208-2a3d8789f8ba"
+ "5dbd5f15-02e4-439c-a28f-af3f90772a4d"
],
"x-ms-correlation-request-id": [
- "59f2cee3-112f-4733-8208-2a3d8789f8ba"
+ "5dbd5f15-02e4-439c-a28f-af3f90772a4d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20191021T194943Z:59f2cee3-112f-4733-8208-2a3d8789f8ba"
+ "WESTUS:20200122T225729Z:5dbd5f15-02e4-439c-a28f-af3f90772a4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8172,7 +8799,7 @@
"nosniff"
],
"Date": [
- "Mon, 21 Oct 2019 19:49:42 GMT"
+ "Wed, 22 Jan 2020 22:57:29 GMT"
],
"Expires": [
"-1"
@@ -8187,11 +8814,11 @@
],
"Names": {
"Test-AzureRmIotHubLifecycle": [
- "ps6778",
- "ps9672",
- "eventHub6735",
- "ps1800",
- "ps1757"
+ "ps1678",
+ "ps4732",
+ "eventHub4729",
+ "ps7567",
+ "ps4195"
]
},
"Variables": {
diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1
index 6749d435095c..c36b32e30b54 100644
--- a/src/IotHub/IotHub/Az.IotHub.psd1
+++ b/src/IotHub/IotHub/Az.IotHub.psd1
@@ -56,7 +56,8 @@ DotNetFrameworkVersion = '4.7.2'
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
# Assemblies that must be loaded prior to importing this module
-RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll'
+RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll', 'Microsoft.Azure.Devices.Shared.dll',
+ 'Microsoft.Azure.Devices.dll', 'Microsoft.Azure.Amqp.dll'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
@@ -91,7 +92,9 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup',
'Test-AzIotHubRoute', 'New-AzIotHubKey',
'Invoke-AzIotHubManualFailover', 'Add-AzIotHubMessageEnrichment',
'Get-AzIotHubMessageEnrichment', 'Remove-AzIotHubMessageEnrichment',
- 'Set-AzIotHubMessageEnrichment'
+ 'Set-AzIotHubMessageEnrichment', 'Add-AzIotHubDevice',
+ 'Get-AzIotHubDevice', 'Remove-AzIotHubDevice',
+ 'Set-AzIotHubDevice'
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md
index 88789606c833..35244d69c26e 100644
--- a/src/IotHub/IotHub/ChangeLog.md
+++ b/src/IotHub/IotHub/ChangeLog.md
@@ -18,6 +18,11 @@
- Additional information about change #1
-->
## Upcoming Release
+* Add support to manage devices in an Iot Hub. New Cmdlets are:
+ - Add-AzIotHubDevice
+ - Get-AzIotHubDevice
+ - Remove-AzIotHubDevice
+ - Set-AzIotHubDevice
## Version 2.0.1
* Update references in .psd1 to use relative path
diff --git a/src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs b/src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs
new file mode 100644
index 000000000000..3e21a1091c64
--- /dev/null
+++ b/src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs
@@ -0,0 +1,39 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Common
+{
+ using System.Collections.Generic;
+ using System.Linq;
+ using Microsoft.Azure.Commands.Management.IotHub.Models;
+ using Microsoft.Azure.Devices;
+
+ public static class IotHubDataPlaneUtils
+ {
+ public static Device ToDevice(PSDevice psDevice)
+ {
+ return IotHubUtils.ConvertObject(psDevice);
+ }
+
+ public static PSDevice ToPSDevice(Device device)
+ {
+ return IotHubUtils.ConvertObject(device);
+ }
+
+ public static IEnumerable ToPSDevices(IEnumerable devices)
+ {
+ return IotHubUtils.ConvertObject, IEnumerable>(devices.ToList());
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/IotHub/IotHub/Common/IotHubUtils.cs b/src/IotHub/IotHub/Common/IotHubUtils.cs
index 2f4e37d2b7b8..f53745524b46 100644
--- a/src/IotHub/IotHub/Common/IotHubUtils.cs
+++ b/src/IotHub/IotHub/Common/IotHubUtils.cs
@@ -68,6 +68,81 @@ public static SharedAccessSignatureAuthorizationRule ToSharedAccessSignatureAuth
return ConvertObject(authorizationPolicy);
}
+ public static SharedAccessSignatureAuthorizationRule GetPolicy(IEnumerable authorizationPolicies, PSAccessRights accessRights)
+ {
+ SharedAccessSignatureAuthorizationRule policy;
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null)
+ {
+ switch (accessRights)
+ {
+ case PSAccessRights.RegistryRead:
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryRead)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryRead)).FirstOrDefault();
+ break;
+ case PSAccessRights.RegistryWrite:
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteServiceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWrite)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWrite)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWrite)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWrite)).FirstOrDefault();
+ break;
+ case PSAccessRights.ServiceConnect:
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteServiceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.ServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.ServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.ServiceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.ServiceConnect)).FirstOrDefault();
+ break;
+ case PSAccessRights.DeviceConnect:
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadRegistryWriteDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.ServiceConnectDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.ServiceConnectDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryWriteDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryWriteDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.RegistryReadDeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.RegistryReadDeviceConnect)).FirstOrDefault();
+ if (policy == null && authorizationPolicies.Any(p => p.Rights.Equals(AccessRights.DeviceConnect)))
+ policy = authorizationPolicies.Where(p => p.Rights.Equals(AccessRights.DeviceConnect)).FirstOrDefault();
+ break;
+ }
+ }
+
+ if (policy == null)
+ throw new UnauthorizedAccessException("Missing access policy for RegistryWrite permission.");
+
+ return policy;
+ }
+
public static IEnumerable ToPSIotHubJobResponseList(IEnumerable jobResponseList)
{
return ConvertObject, IEnumerable>(jobResponseList.ToList());
diff --git a/src/IotHub/IotHub/IotHub.csproj b/src/IotHub/IotHub/IotHub.csproj
index 8d0fa2684b1c..eeb3115af54d 100644
--- a/src/IotHub/IotHub/IotHub.csproj
+++ b/src/IotHub/IotHub/IotHub.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/IotHub/IotHub/IotHub.format.ps1xml b/src/IotHub/IotHub/IotHub.format.ps1xml
index f7abf57767e3..1b86936d4f26 100644
--- a/src/IotHub/IotHub/IotHub.format.ps1xml
+++ b/src/IotHub/IotHub/IotHub.format.ps1xml
@@ -686,5 +686,120 @@
+
+
+ Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice
+
+
+ Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice
+
+
+
+
+
+
+
+ $_.Id
+
+
+ GenerationId
+
+
+ ETag
+
+
+ LastActivityTime
+
+
+ ConnectionState
+
+
+ ConnectionStateUpdatedTime
+
+
+
+ $_.Status
+
+
+ StatusReason
+
+
+ StatusUpdatedTime
+
+
+ CloudToDeviceMessageCount
+
+
+
+ $_.Authentication.Type
+
+
+
+ $_.Capabilities.IotEdge
+
+
+
+ $_.Scope
+
+
+
+
+
+
+
+
+ Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices
+
+
+ Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $_.Id
+
+
+ $_.Status
+
+
+ $_.ConnectionState
+
+
+ $_.Authentication.Type
+
+
+ $_.Capabilities.IotEdge
+
+
+ $_.LastActivityTime
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs
new file mode 100644
index 000000000000..729f8e7d42ef
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs
@@ -0,0 +1,158 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub
+{
+ using System.Collections.Generic;
+ using System.Management.Automation;
+ using Microsoft.Azure.Commands.Management.IotHub.Common;
+ using Microsoft.Azure.Commands.Management.IotHub.Models;
+ using Microsoft.Azure.Devices;
+ using Microsoft.Azure.Management.IotHub;
+ using Microsoft.Azure.Management.IotHub.Models;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubDevice", DefaultParameterSetName = ResourceParameterSet, SupportsShouldProcess = true)]
+ [OutputType(typeof(PSDevice))]
+ public class AddAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters
+ {
+ private const string ResourceIdParameterSet = "ResourceIdSet";
+ private const string ResourceParameterSet = "ResourceSet";
+ private const string InputObjectParameterSet = "InputObjectSet";
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = InputObjectParameterSet, ValueFromPipeline = true, HelpMessage = "IotHub object")]
+ [ValidateNotNullOrEmpty]
+ public PSIotHub InputObject { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Resource Group")]
+ [ValidateNotNullOrEmpty]
+ [ResourceGroupCompleter]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "IotHub Resource Id")]
+ [ValidateNotNullOrEmpty]
+ [ResourceIdCompleter("Microsoft.Devices/IotHubs")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Iot Hub")]
+ [ValidateNotNullOrEmpty]
+ public string IotHubName { get; set; }
+
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Target Device Id.")]
+ [ValidateNotNullOrEmpty]
+ public string DeviceId { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "The authorization type an entity is to be created with.")]
+ public PSDeviceAuthType AuthMethod { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Set device status upon creation.")]
+ public PSDeviceStatus Status { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Description for device status.")]
+ public string StatusReason { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Flag indicating edge enablement.")]
+ public SwitchParameter EdgeEnabled { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ShouldProcess(this.DeviceId, Properties.Resources.AddIotHubDevice))
+ {
+ IotHubDescription iotHubDescription;
+ if (ParameterSetName.Equals(InputObjectParameterSet))
+ {
+ this.ResourceGroupName = this.InputObject.Resourcegroup;
+ this.IotHubName = this.InputObject.Name;
+ iotHubDescription = IotHubUtils.ConvertObject(this.InputObject);
+ }
+ else
+ {
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId);
+ this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId);
+ }
+
+ iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName);
+ }
+
+ IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.IotHubName);
+ SharedAccessSignatureAuthorizationRule policy = IotHubUtils.GetPolicy(authPolicies, PSAccessRights.RegistryWrite);
+
+ PSIotHubConnectionString psIotHubConnectionString = IotHubUtils.ToPSIotHubConnectionString(policy, iotHubDescription.Properties.HostName);
+
+ PSDeviceCapabilities psDeviceCapabilities = new PSDeviceCapabilities();
+ psDeviceCapabilities.IotEdge = this.EdgeEnabled.IsPresent;
+
+ PSAuthenticationMechanism auth = new PSAuthenticationMechanism();
+
+ PSDevice device = new PSDevice();
+ device.Id = this.DeviceId;
+ switch (this.AuthMethod)
+ {
+ case PSDeviceAuthType.x509_thumbprint:
+ auth.Type = PSAuthenticationType.SelfSigned;
+ auth.X509Thumbprint = new PSX509Thumbprint();
+ auth.X509Thumbprint.PrimaryThumbprint = this.authTypeDynamicParameter.PrimaryThumbprint;
+ auth.X509Thumbprint.SecondaryThumbprint = this.authTypeDynamicParameter.SecondaryThumbprint;
+ break;
+ case PSDeviceAuthType.x509_ca:
+ auth.Type = PSAuthenticationType.CertificateAuthority;
+ break;
+ default:
+ auth.SymmetricKey = new PSSymmetricKey();
+ auth.Type = PSAuthenticationType.Sas;
+ break;
+ }
+ device.Authentication = auth;
+ device.Capabilities = psDeviceCapabilities;
+ device.Status = this.Status;
+ device.StatusReason = this.StatusReason;
+
+ RegistryManager registryManager = RegistryManager.CreateFromConnectionString(psIotHubConnectionString.PrimaryConnectionString);
+ this.WriteObject(IotHubDataPlaneUtils.ToPSDevice(registryManager.AddDeviceAsync(IotHubDataPlaneUtils.ToDevice(device)).GetAwaiter().GetResult()));
+ }
+ }
+
+ public object GetDynamicParameters()
+ {
+ if (this.AuthMethod.Equals(PSDeviceAuthType.x509_thumbprint))
+ {
+ authTypeDynamicParameter = new AuthTypeDynamicParameter();
+ return authTypeDynamicParameter;
+ }
+
+ return null;
+ }
+
+ private AuthTypeDynamicParameter authTypeDynamicParameter;
+
+ public class AuthTypeDynamicParameter
+ {
+ [Parameter(Mandatory = true, ParameterSetName = InputObjectParameterSet, HelpMessage = "Explicit self-signed certificate thumbprint to use for primary key.")]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Explicit self-signed certificate thumbprint to use for primary key.")]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Explicit self-signed certificate thumbprint to use for primary key.")]
+ [ValidateNotNullOrEmpty]
+ public string PrimaryThumbprint { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Explicit self-signed certificate thumbprint to use for secondary key.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Explicit self-signed certificate thumbprint to use for secondary key.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Explicit self-signed certificate thumbprint to use for secondary key.")]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryThumbprint { get; set; }
+ }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs
new file mode 100644
index 000000000000..bff0742041a6
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs
@@ -0,0 +1,108 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub
+{
+ using System.Collections.Generic;
+ using System.Management.Automation;
+ using Microsoft.Azure.Commands.Management.IotHub.Common;
+ using Microsoft.Azure.Commands.Management.IotHub.Models;
+ using Microsoft.Azure.Devices;
+ using Microsoft.Azure.Management.IotHub;
+ using Microsoft.Azure.Management.IotHub.Models;
+ using Newtonsoft.Json;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubDevice", DefaultParameterSetName = ResourceParameterSet)]
+ [OutputType(typeof(PSDevice), typeof(PSDevices[]))]
+ public class GetAzIotHubDevice : IotHubBaseCmdlet
+ {
+ private const string ResourceIdParameterSet = "ResourceIdSet";
+ private const string ResourceParameterSet = "ResourceSet";
+ private const string InputObjectParameterSet = "InputObjectSet";
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = InputObjectParameterSet, ValueFromPipeline = true, HelpMessage = "IotHub object")]
+ [ValidateNotNullOrEmpty]
+ public PSIotHub InputObject { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Resource Group")]
+ [ValidateNotNullOrEmpty]
+ [ResourceGroupCompleter]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "IotHub Resource Id")]
+ [ValidateNotNullOrEmpty]
+ [ResourceIdCompleter("Microsoft.Devices/IotHubs")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Iot Hub")]
+ [ValidateNotNullOrEmpty]
+ public string IotHubName { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target Device Id.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target Device Id.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Target Device Id.")]
+ [ValidateNotNullOrEmpty]
+ public string DeviceId { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ IotHubDescription iotHubDescription;
+ if (ParameterSetName.Equals(InputObjectParameterSet))
+ {
+ this.ResourceGroupName = this.InputObject.Resourcegroup;
+ this.IotHubName = this.InputObject.Name;
+ iotHubDescription = IotHubUtils.ConvertObject(this.InputObject);
+ }
+ else
+ {
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId);
+ this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId);
+ }
+
+ iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName);
+ }
+
+ IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.IotHubName);
+ SharedAccessSignatureAuthorizationRule policy = IotHubUtils.GetPolicy(authPolicies, PSAccessRights.RegistryRead);
+ PSIotHubConnectionString psIotHubConnectionString = IotHubUtils.ToPSIotHubConnectionString(policy, iotHubDescription.Properties.HostName);
+ RegistryManager registryManager = RegistryManager.CreateFromConnectionString(psIotHubConnectionString.PrimaryConnectionString);
+ if (this.DeviceId != null)
+ {
+ this.WriteObject(IotHubDataPlaneUtils.ToPSDevice(registryManager.GetDeviceAsync(this.DeviceId).GetAwaiter().GetResult()));
+ }
+ else
+ {
+ IList devices = new List();
+ IEnumerable deviceResults = registryManager.CreateQuery("Select * from Devices").GetNextAsJsonAsync().GetAwaiter().GetResult();
+ foreach(string deviceResult in deviceResults)
+ {
+ Device d = JsonConvert.DeserializeObject(deviceResult);
+ devices.Add(registryManager.GetDeviceAsync(d.Id).GetAwaiter().GetResult());
+ }
+
+ if (devices.Count == 1)
+ {
+ this.WriteObject(IotHubDataPlaneUtils.ToPSDevice(devices[0]));
+ }
+ else
+ {
+ this.WriteObject(IotHubDataPlaneUtils.ToPSDevices(devices), true);
+ }
+ }
+ }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs
new file mode 100644
index 000000000000..53dd3d47cd7e
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs
@@ -0,0 +1,145 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub
+{
+ using System;
+ using System.Collections.Generic;
+ using System.Management.Automation;
+ using Microsoft.Azure.Commands.Management.IotHub.Common;
+ using Microsoft.Azure.Commands.Management.IotHub.Models;
+ using Microsoft.Azure.Devices;
+ using Microsoft.Azure.Management.IotHub;
+ using Microsoft.Azure.Management.IotHub.Models;
+ using Newtonsoft.Json;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubDevice", DefaultParameterSetName = ResourceParameterSet, SupportsShouldProcess = true)]
+ [OutputType(typeof(bool))]
+ public class RemoveAzIotHubDevice : IotHubBaseCmdlet
+ {
+ private const string ResourceIdParameterSet = "ResourceIdSet";
+ private const string ResourceParameterSet = "ResourceSet";
+ private const string InputObjectParameterSet = "InputObjectSet";
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = InputObjectParameterSet, ValueFromPipeline = true, HelpMessage = "IotHub object")]
+ [ValidateNotNullOrEmpty]
+ public PSIotHub InputObject { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Resource Group")]
+ [ValidateNotNullOrEmpty]
+ [ResourceGroupCompleter]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "IotHub Resource Id")]
+ [ValidateNotNullOrEmpty]
+ [ResourceIdCompleter("Microsoft.Devices/IotHubs")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Iot Hub")]
+ [ValidateNotNullOrEmpty]
+ public string IotHubName { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target Device Id.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target Device Id.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Target Device Id.")]
+ [ValidateNotNullOrEmpty]
+ public string DeviceId { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Allows to return the boolean object. By default, this cmdlet does not generate any output.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ IotHubDescription iotHubDescription;
+ if (ParameterSetName.Equals(InputObjectParameterSet))
+ {
+ this.ResourceGroupName = this.InputObject.Resourcegroup;
+ this.IotHubName = this.InputObject.Name;
+ iotHubDescription = IotHubUtils.ConvertObject(this.InputObject);
+ }
+ else
+ {
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId);
+ this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId);
+ }
+
+ iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName);
+ }
+
+ IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.IotHubName);
+ SharedAccessSignatureAuthorizationRule policy = IotHubUtils.GetPolicy(authPolicies, PSAccessRights.RegistryWrite);
+ PSIotHubConnectionString psIotHubConnectionString = IotHubUtils.ToPSIotHubConnectionString(policy, iotHubDescription.Properties.HostName);
+ RegistryManager registryManager = RegistryManager.CreateFromConnectionString(psIotHubConnectionString.PrimaryConnectionString);
+ if (ShouldProcess(this.DeviceId, Properties.Resources.RemoveIotHubDevice))
+ {
+ try
+ {
+ if (string.IsNullOrEmpty(this.DeviceId))
+ {
+ IList devices = new List();
+ IEnumerable deviceResults = registryManager.CreateQuery("Select * from Devices").GetNextAsJsonAsync().GetAwaiter().GetResult();
+ foreach (string deviceResult in deviceResults)
+ {
+ Device d = JsonConvert.DeserializeObject(deviceResult);
+ devices.Add(registryManager.GetDeviceAsync(d.Id).GetAwaiter().GetResult());
+ }
+ var result = registryManager.RemoveDevices2Async(devices).GetAwaiter().GetResult();
+
+ if (result.IsSuccessful)
+ {
+ if (PassThru.IsPresent)
+ {
+ this.WriteObject(true);
+ }
+ }
+ else
+ {
+ if (PassThru.IsPresent)
+ {
+ this.WriteObject(false);
+ }
+ }
+ }
+ else
+ {
+ Device d = registryManager.GetDeviceAsync(this.DeviceId).GetAwaiter().GetResult();
+ if (d != null)
+ {
+ registryManager.RemoveDeviceAsync(this.DeviceId).GetAwaiter().GetResult();
+ if (PassThru.IsPresent)
+ {
+ this.WriteObject(true);
+ }
+ }
+ else
+ {
+ throw new ArgumentNullException("The target device doesn't exist.");
+ }
+ }
+ }
+ catch
+ {
+ if (PassThru.IsPresent)
+ {
+ this.WriteObject(false);
+ }
+ }
+ }
+
+ }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs
new file mode 100644
index 000000000000..1a4122c84a3d
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs
@@ -0,0 +1,207 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub
+{
+ using System.Collections.Generic;
+ using System.Management.Automation;
+ using Microsoft.Azure.Commands.Management.IotHub.Common;
+ using Microsoft.Azure.Commands.Management.IotHub.Models;
+ using Microsoft.Azure.Devices;
+ using Microsoft.Azure.Management.IotHub;
+ using Microsoft.Azure.Management.IotHub.Models;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubDevice", DefaultParameterSetName = ResourceParameterSetForStatus, SupportsShouldProcess = true)]
+ [OutputType(typeof(PSDevice))]
+ public class SetAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters
+ {
+ private const string ResourceIdParameterSetForAuth = "ResourceIdSetForAuth";
+ private const string ResourceParameterSetForAuth = "ResourceSetForAuth";
+ private const string InputObjectParameterSetForAuth = "InputObjectSetForAuth";
+
+ private const string ResourceIdParameterSetForStatus = "ResourceIdSetForStatus";
+ private const string ResourceParameterSetForStatus = "ResourceSetForStatus";
+ private const string InputObjectParameterSetForStatus = "InputObjectSetForStatus";
+
+ private const string ResourceIdParameterSetForEdgeEnabled = "ResourceIdSetForEdgeEnabled";
+ private const string ResourceParameterSetForEdgeEnabled = "ResourceSetForEdgeEnabled";
+ private const string InputObjectParameterSetForEdgeEnabled = "InputObjectSetForEdgeEnabled";
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = InputObjectParameterSetForAuth, ValueFromPipeline = true, HelpMessage = "IotHub object")]
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = InputObjectParameterSetForStatus, ValueFromPipeline = true, HelpMessage = "IotHub object")]
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = InputObjectParameterSetForEdgeEnabled, ValueFromPipeline = true, HelpMessage = "IotHub object")]
+ [ValidateNotNullOrEmpty]
+ public PSIotHub InputObject { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Name of the Resource Group")]
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Name of the Resource Group")]
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceParameterSetForEdgeEnabled, HelpMessage = "Name of the Resource Group")]
+ [ValidateNotNullOrEmpty]
+ [ResourceGroupCompleter]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceIdParameterSetForAuth, ValueFromPipelineByPropertyName = true, HelpMessage = "IotHub Resource Id")]
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceIdParameterSetForStatus, ValueFromPipelineByPropertyName = true, HelpMessage = "IotHub Resource Id")]
+ [Parameter(Position = 0, Mandatory = true, ParameterSetName = ResourceIdParameterSetForEdgeEnabled, ValueFromPipelineByPropertyName = true, HelpMessage = "IotHub Resource Id")]
+ [ValidateNotNullOrEmpty]
+ [ResourceIdCompleter("Microsoft.Devices/IotHubs")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Name of the Iot Hub")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Name of the Iot Hub")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSetForEdgeEnabled, HelpMessage = "Name of the Iot Hub")]
+ [ValidateNotNullOrEmpty]
+ public string IotHubName { get; set; }
+
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForAuth, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForAuth, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForStatus, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForStatus, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForEdgeEnabled, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForEdgeEnabled, HelpMessage = "Target Device Id.")]
+ [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForEdgeEnabled, HelpMessage = "Target Device Id.")]
+ [ValidateNotNullOrEmpty]
+ public string DeviceId { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSetForAuth, HelpMessage = "The authorization type an entity is to be created with.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSetForAuth, HelpMessage = "The authorization type an entity is to be created with.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "The authorization type an entity is to be created with.")]
+ [ValidateNotNullOrEmpty]
+ public PSDeviceAuthType AuthMethod { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSetForStatus, HelpMessage = "Set device status upon creation.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSetForStatus, HelpMessage = "Set device status upon creation.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Set device status upon creation.")]
+ [ValidateNotNullOrEmpty]
+ public PSDeviceStatus Status { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSetForStatus, HelpMessage = "Description for device status.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSetForStatus, HelpMessage = "Description for device status.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Description for device status.")]
+ public string StatusReason { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSetForEdgeEnabled, HelpMessage = "Flag indicating edge enablement.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSetForEdgeEnabled, HelpMessage = "Flag indicating edge enablement.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSetForEdgeEnabled, HelpMessage = "Flag indicating edge enablement.")]
+ [ValidateNotNullOrEmpty]
+ public bool EdgeEnabled { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ShouldProcess(this.DeviceId, Properties.Resources.UpdateIotHubDevice))
+ {
+ IotHubDescription iotHubDescription = null;
+ switch (ParameterSetName)
+ {
+ case InputObjectParameterSetForAuth:
+ case InputObjectParameterSetForStatus:
+ case InputObjectParameterSetForEdgeEnabled:
+ this.ResourceGroupName = this.InputObject.Resourcegroup;
+ this.IotHubName = this.InputObject.Name;
+ iotHubDescription = IotHubUtils.ConvertObject(this.InputObject);
+ break;
+ case ResourceIdParameterSetForAuth:
+ case ResourceIdParameterSetForStatus:
+ case ResourceIdParameterSetForEdgeEnabled:
+ this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId);
+ this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId);
+ break;
+ }
+
+ if (iotHubDescription == null)
+ {
+ iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName);
+ }
+
+ IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.IotHubName);
+ SharedAccessSignatureAuthorizationRule policy = IotHubUtils.GetPolicy(authPolicies, PSAccessRights.RegistryWrite);
+
+ PSIotHubConnectionString psIotHubConnectionString = IotHubUtils.ToPSIotHubConnectionString(policy, iotHubDescription.Properties.HostName);
+ RegistryManager registryManager = RegistryManager.CreateFromConnectionString(psIotHubConnectionString.PrimaryConnectionString);
+
+ PSDevice device = IotHubDataPlaneUtils.ToPSDevice(registryManager.GetDeviceAsync(this.DeviceId).GetAwaiter().GetResult());
+
+ switch (ParameterSetName)
+ {
+ case InputObjectParameterSetForAuth:
+ case ResourceIdParameterSetForAuth:
+ case ResourceParameterSetForAuth:
+ PSAuthenticationMechanism auth = new PSAuthenticationMechanism();
+ switch (this.AuthMethod)
+ {
+ case PSDeviceAuthType.x509_thumbprint:
+ auth.Type = PSAuthenticationType.SelfSigned;
+ auth.X509Thumbprint = new PSX509Thumbprint();
+ auth.X509Thumbprint.PrimaryThumbprint = this.authTypeDynamicParameter.PrimaryThumbprint;
+ auth.X509Thumbprint.SecondaryThumbprint = this.authTypeDynamicParameter.SecondaryThumbprint;
+ break;
+ case PSDeviceAuthType.x509_ca:
+ auth.Type = PSAuthenticationType.CertificateAuthority;
+ break;
+ default:
+ auth.SymmetricKey = new PSSymmetricKey();
+ auth.Type = PSAuthenticationType.Sas;
+ break;
+ }
+ device.Authentication = auth;
+ break;
+ case InputObjectParameterSetForStatus:
+ case ResourceIdParameterSetForStatus:
+ case ResourceParameterSetForStatus:
+ device.Status = this.Status;
+ device.StatusReason = this.StatusReason;
+ break;
+ case InputObjectParameterSetForEdgeEnabled:
+ case ResourceIdParameterSetForEdgeEnabled:
+ case ResourceParameterSetForEdgeEnabled:
+ device.Capabilities.IotEdge = this.EdgeEnabled;
+ break;
+ }
+
+ this.WriteObject(IotHubDataPlaneUtils.ToPSDevice(registryManager.UpdateDeviceAsync(IotHubDataPlaneUtils.ToDevice(device)).GetAwaiter().GetResult()));
+ }
+ }
+
+ public object GetDynamicParameters()
+ {
+ if (this.AuthMethod.Equals(PSDeviceAuthType.x509_thumbprint))
+ {
+ authTypeDynamicParameter = new AuthTypeDynamicParameter();
+ return authTypeDynamicParameter;
+ }
+
+ return null;
+ }
+
+ private AuthTypeDynamicParameter authTypeDynamicParameter;
+
+ public class AuthTypeDynamicParameter
+ {
+ [Parameter(Mandatory = true, ParameterSetName = InputObjectParameterSetForAuth, HelpMessage = "Explicit self-signed certificate thumbprint to use for primary key.")]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSetForAuth, HelpMessage = "Explicit self-signed certificate thumbprint to use for primary key.")]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Explicit self-signed certificate thumbprint to use for primary key.")]
+ [ValidateNotNullOrEmpty]
+ public string PrimaryThumbprint { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSetForAuth, HelpMessage = "Explicit self-signed certificate thumbprint to use for secondary key.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSetForAuth, HelpMessage = "Explicit self-signed certificate thumbprint to use for secondary key.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Explicit self-signed certificate thumbprint to use for secondary key.")]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryThumbprint { get; set; }
+ }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationMechanism.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationMechanism.cs
new file mode 100644
index 000000000000..eaeb41070357
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationMechanism.cs
@@ -0,0 +1,43 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using Newtonsoft.Json;
+ using Newtonsoft.Json.Converters;
+
+ ///
+ /// Used to specify the authentication mechanism used by a device.
+ ///
+ public class PSAuthenticationMechanism
+ {
+ ///
+ /// Gets or sets the used for Authentication
+ ///
+ [JsonProperty(PropertyName = "symmetricKey")]
+ public PSSymmetricKey SymmetricKey { get; set; }
+
+ ///
+ /// Gets or sets the X509 client certificate thumbprint.
+ ///
+ [JsonProperty(PropertyName = "x509Thumbprint")]
+ public PSX509Thumbprint X509Thumbprint { get; set; }
+
+ ///
+ /// Gets or sets the authentication type.
+ ///
+ [JsonProperty(PropertyName = "type")]
+ public PSAuthenticationType Type { get; set; }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationType.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationType.cs
new file mode 100644
index 000000000000..aeddfd169cfc
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationType.cs
@@ -0,0 +1,27 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using Newtonsoft.Json;
+ using Newtonsoft.Json.Converters;
+
+ [JsonConverter(typeof(StringEnumConverter))]
+ public enum PSAuthenticationType
+ {
+ Sas = 0,
+ SelfSigned = 1,
+ CertificateAuthority = 2
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDevice.cs
new file mode 100644
index 000000000000..5050704470ee
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDevice.cs
@@ -0,0 +1,103 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using System;
+ using Newtonsoft.Json;
+
+ public class PSDevice
+ {
+ ///
+ /// Device ID
+ ///
+ [JsonProperty(PropertyName = "deviceId")]
+ public string Id { get; set; }
+
+ ///
+ /// Device's Generation ID
+ ///
+ [JsonProperty(PropertyName = "generationId")]
+ public string GenerationId { get; set; }
+
+ ///
+ /// Device's ETag
+ ///
+ [JsonProperty(PropertyName = "etag")]
+ public string ETag { get; set; }
+
+ ///
+ /// Device's ConnectionState
+ ///
+ [JsonProperty(PropertyName = "connectionState")]
+ public PSDeviceConnectionState ConnectionState { get; set; }
+
+ ///
+ /// Device's Status
+ ///
+ [JsonProperty(PropertyName = "status")]
+ public PSDeviceStatus Status { get; set; }
+
+ ///
+ /// Reason, if any, for the Device to be in specified
+ ///
+ [JsonProperty(PropertyName = "statusReason")]
+ public string StatusReason { get; set; }
+
+ ///
+ /// Time when the was last updated
+ ///
+ [JsonProperty(PropertyName = "connectionStateUpdatedTime")]
+ public DateTime ConnectionStateUpdatedTime { get; set; }
+
+ ///
+ /// Time when the was last updated
+ ///
+ [JsonProperty(PropertyName = "statusUpdatedTime")]
+ public DateTime StatusUpdatedTime { get; set; }
+
+ ///
+ /// Time when the was last active
+ ///
+ [JsonProperty(PropertyName = "lastActivityTime")]
+ public DateTime LastActivityTime { get; set; }
+
+ ///
+ /// Number of messages sent to the Device from the Cloud
+ ///
+ [JsonProperty(PropertyName = "cloudToDeviceMessageCount")]
+ public int CloudToDeviceMessageCount { get; set; }
+
+ ///
+ /// Device's authentication mechanism
+ ///
+ [JsonProperty(PropertyName = "authentication")]
+ public PSAuthenticationMechanism Authentication { get; set; }
+
+ ///
+ /// Capabilities that are enabled on the device
+ ///
+ [JsonProperty(PropertyName = "capabilities")]
+ public PSDeviceCapabilities Capabilities { get; set; }
+
+ ///
+ /// Scope to which this device instance belongs to
+ ///
+ [JsonProperty(PropertyName = "deviceScope")]
+ public string Scope { get; set; }
+ }
+
+ public class PSDevices: PSDevice
+ { }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceAuthType.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceAuthType.cs
new file mode 100644
index 000000000000..d069c615fd22
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceAuthType.cs
@@ -0,0 +1,26 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ ///
+ /// Device Authorization type.
+ ///
+ public enum PSDeviceAuthType
+ {
+ shared_private_key,
+ x509_thumbprint,
+ x509_ca
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs
new file mode 100644
index 000000000000..9fe55a83d4b4
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs
@@ -0,0 +1,26 @@
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ ///
+ /// Status of Capabilities enabled on the device.
+ ///
+
+ public class PSDeviceCapabilities
+ {
+ ///
+ /// IoT Edge capability.
+ ///
+ public bool IotEdge { get; set; }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceConnectionState.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceConnectionState.cs
new file mode 100644
index 000000000000..92cd6eec32fe
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceConnectionState.cs
@@ -0,0 +1,36 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using Newtonsoft.Json;
+ using Newtonsoft.Json.Converters;
+
+ ///
+ /// Specifies the different connection states of a device.
+ ///
+ [JsonConverter(typeof(StringEnumConverter))]
+ public enum PSDeviceConnectionState
+ {
+ ///
+ /// Represents a device in the Disconnected state.
+ ///
+ Disconnected = 0,
+
+ ///
+ /// Represents a device in the Connected state.
+ ///
+ Connected = 1
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceStatus.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceStatus.cs
new file mode 100644
index 000000000000..8dfac034c563
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceStatus.cs
@@ -0,0 +1,36 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using Newtonsoft.Json;
+ using Newtonsoft.Json.Converters;
+
+ ///
+ /// Specifies the different states of a device.
+ ///
+ [JsonConverter(typeof(StringEnumConverter))]
+ public enum PSDeviceStatus
+ {
+ ///
+ /// Indicates that a Device is enabled
+ ///
+ Enabled = 0,
+
+ ///
+ /// Indicates that a Device is disabled
+ ///
+ Disabled = 1
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSSymmetricKey.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSSymmetricKey.cs
new file mode 100644
index 000000000000..8f31005d76bc
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSSymmetricKey.cs
@@ -0,0 +1,35 @@
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// primary and secondary symmetric keys of a device.
+ ///
+
+ public class PSSymmetricKey
+ {
+ ///
+ /// Gets or sets the PrimaryKey
+ ///
+ [JsonProperty(PropertyName = "primaryKey")]
+ public string PrimaryKey { get; set; }
+
+ ///
+ /// Gets or sets the SecondaryKey
+ ///
+ [JsonProperty(PropertyName = "secondaryKey")]
+ public string SecondaryKey { get; set; }
+ }
+}
diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSX509Thumbprint.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSX509Thumbprint.cs
new file mode 100644
index 000000000000..a95a9950f785
--- /dev/null
+++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSX509Thumbprint.cs
@@ -0,0 +1,35 @@
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Management.IotHub.Models
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// X509 client certificate thumbprints of the device.
+ ///
+
+ public class PSX509Thumbprint
+ {
+ ///
+ /// X509 client certificate primary thumbprint
+ ///
+ [JsonProperty(PropertyName = "primaryThumbprint")]
+ public string PrimaryThumbprint { get; set; }
+
+ ///
+ /// X509 client certificate secondary thumbprint
+ ///
+ [JsonProperty(PropertyName = "secondaryThumbprint")]
+ public string SecondaryThumbprint { get; set; }
+ }
+}
diff --git a/src/IotHub/IotHub/Properties/Resources.Designer.cs b/src/IotHub/IotHub/Properties/Resources.Designer.cs
index cc2844a5cd52..b26296702099 100644
--- a/src/IotHub/IotHub/Properties/Resources.Designer.cs
+++ b/src/IotHub/IotHub/Properties/Resources.Designer.cs
@@ -9,7 +9,7 @@
//------------------------------------------------------------------------------
namespace Microsoft.Azure.Commands.Management.IotHub.Properties {
- using System;
+ using System;
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
@@ -85,6 +85,15 @@ internal static string AddIotHubCertificate {
}
}
+ ///
+ /// Looks up a localized string similar to Add Device.
+ ///
+ internal static string AddIotHubDevice {
+ get {
+ return ResourceManager.GetString("AddIotHubDevice", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Add an IoT Hub Key.
///
@@ -202,6 +211,15 @@ internal static string RemoveIotHubCertificate {
}
}
+ ///
+ /// Looks up a localized string similar to Remove Device.
+ ///
+ internal static string RemoveIotHubDevice {
+ get {
+ return ResourceManager.GetString("RemoveIotHubDevice", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Remove IoT Hub Key.
///
@@ -247,6 +265,15 @@ internal static string UpdateIotHub {
}
}
+ ///
+ /// Looks up a localized string similar to Update Device.
+ ///
+ internal static string UpdateIotHubDevice {
+ get {
+ return ResourceManager.GetString("UpdateIotHubDevice", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Update Message Enrichment.
///
diff --git a/src/IotHub/IotHub/Properties/Resources.resx b/src/IotHub/IotHub/Properties/Resources.resx
index 24a4798911bb..e167157bee48 100644
--- a/src/IotHub/IotHub/Properties/Resources.resx
+++ b/src/IotHub/IotHub/Properties/Resources.resx
@@ -126,6 +126,15 @@
Add or Update an Iot Hub Certificate
+
+ Add Device
+
+
+ Remove Device
+
+
+ Update Device
+
Add an IoT Hub Key
diff --git a/src/IotHub/IotHub/help/Add-AzIotHubDevice.md b/src/IotHub/IotHub/help/Add-AzIotHubDevice.md
new file mode 100644
index 000000000000..398f495e9792
--- /dev/null
+++ b/src/IotHub/IotHub/help/Add-AzIotHubDevice.md
@@ -0,0 +1,285 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll-Help.xml
+Module Name: Az.IotHub
+online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/add-aziothubdevice
+schema: 2.0.0
+---
+
+# Add-AzIotHubDevice
+
+## SYNOPSIS
+Create a device in an IoT Hub.
+
+## SYNTAX
+
+### ResourceSet (Default)
+```
+Add-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId]
+ [-AuthMethod ] [-Status ] [-StatusReason ] [-EdgeEnabled]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### InputObjectSet
+```
+Add-AzIotHubDevice [-InputObject] [-DeviceId] [-AuthMethod ]
+ [-Status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdSet
+```
+Add-AzIotHubDevice [-ResourceId] [-DeviceId] [-AuthMethod ]
+ [-Status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+Create a device with different authorization type in an IoT Hub.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Add-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -AuthMethod "shared_private_key" -EdgeEnabled
+```
+
+Create an edge enabled IoT device with default authorization (shared private key).
+
+### Example 2
+```powershell
+PS C:\> Add-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice2" -AuthMethod "x509_ca" -Status Disabled -StatusReason "Some Reason"
+```
+
+Create an IoT device with root CA authorization with disabled status and reason.
+
+## PARAMETERS
+
+### -AuthMethod
+The authorization type an entity is to be created with.
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType
+Parameter Sets: (All)
+Aliases:
+Accepted values: shared_private_key, x509_thumbprint, x509_ca
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DeviceId
+Target Device Id.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -EdgeEnabled
+Flag indicating edge enablement.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+IotHub object
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+Parameter Sets: InputObjectSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -IotHubName
+Name of the Iot Hub
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSet
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -PrimaryThumbprint
+Explicit self-signed certificate thumbprint to use for primary key.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Name of the Resource Group
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+IotHub Resource Id
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -SecondaryThumbprint
+Explicit self-signed certificate thumbprint to use for secondary key.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Status
+Set device status upon creation.
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus
+Parameter Sets: (All)
+Aliases:
+Accepted values: Enabled, Disabled
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -StatusReason
+Description for device status.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/IotHub/IotHub/help/Az.IotHub.md b/src/IotHub/IotHub/help/Az.IotHub.md
index 0cef71e5e28b..acf6fe7360a0 100644
--- a/src/IotHub/IotHub/help/Az.IotHub.md
+++ b/src/IotHub/IotHub/help/Az.IotHub.md
@@ -14,6 +14,9 @@ Commands for Managing Azure IotHubs
### [Add-AzIotHubCertificate](Add-AzIotHubCertificate.md)
Create/update an Azure IoT Hub certificate.
+### [Add-AzIotHubDevice](Add-AzIotHubDevice.md)
+Create a device in an IoT Hub.
+
### [Add-AzIotHubEventHubConsumerGroup](Add-AzIotHubEventHubConsumerGroup.md)
Creates an eventhub consumer group.
@@ -41,6 +44,9 @@ Generates a verification code for an Azure IoT Hub certificate.
### [Get-AzIotHubConnectionString](Get-AzIotHubConnectionString.md)
Gets the IotHub connectionstrings.
+### [Get-AzIotHubDevice](Get-AzIotHubDevice.md)
+Lists all devices or a particular device contained within an Azure IoT Hub.
+
### [Get-AzIotHubEventHubConsumerGroup](Get-AzIotHubEventHubConsumerGroup.md)
Gets all the eventhub consumergroups.
@@ -89,6 +95,9 @@ Deletes an IotHub.
### [Remove-AzIotHubCertificate](Remove-AzIotHubCertificate.md)
Deletes an Azure IoT Hub certificate.
+### [Remove-AzIotHubDevice](Remove-AzIotHubDevice.md)
+Delete an IoT Hub device.
+
### [Remove-AzIotHubEventHubConsumerGroup](Remove-AzIotHubEventHubConsumerGroup.md)
Deletes an eventhub consumergroup.
@@ -107,6 +116,9 @@ Delete an endpoint for your IoT Hub
### [Set-AzIotHub](Set-AzIotHub.md)
Updates the properties of an IotHub.
+### [Set-AzIotHubDevice](Set-AzIotHubDevice.md)
+Update an IoT Hub device.
+
### [Set-AzIotHubMessageEnrichment](Set-AzIotHubMessageEnrichment.md)
Update a message enrichment in your IoT hub.
diff --git a/src/IotHub/IotHub/help/Get-AzIotHubDevice.md b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md
new file mode 100644
index 000000000000..9e622c34aa82
--- /dev/null
+++ b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md
@@ -0,0 +1,181 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll-Help.xml
+Module Name: Az.IotHub
+online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/get-aziothubdevice
+schema: 2.0.0
+---
+
+# Get-AzIotHubDevice
+
+## SYNOPSIS
+Lists all devices or a particular device contained within an Azure IoT Hub.
+
+## SYNTAX
+
+### ResourceSet (Default)
+```
+Get-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId ]
+ [-DefaultProfile ] []
+```
+
+### InputObjectSet
+```
+Get-AzIotHubDevice [-InputObject] [-DeviceId ] [-DefaultProfile ]
+ []
+```
+
+### ResourceIdSet
+```
+Get-AzIotHubDevice [-ResourceId] [-DeviceId ] [-DefaultProfile ]
+ []
+```
+
+## DESCRIPTION
+Get the details of an Iot Hub device or list all devices in an Iot Hub.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub"
+
+Device Id Status Connection State Authentication Edge Enabled Last Activity Time
+--------- ------ ---------------- -------------- ------------ ------------------
+device1 Enabled Disconnected CertificateAuthority True 1/1/0001 12:00:00 AM
+device2 Disabled Disconnected Sas False 1/1/0001 12:00:00 AM
+device3 Enabled Disconnected SelfSigned False 1/1/0001 12:00:00 AM
+```
+
+Show all devices in an Iot Hub.
+
+### Example 2
+```powershell
+PS C:\> Get-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1"
+
+DeviceId : myDevice1
+GenerationId : 637148941292917073
+ETag : "NzIyMDI4MTk3"
+LastActivityTime : 1/1/0001 12:00:00 AM
+ConnectionState : Disconnected
+ConnectionStateUpdatedTime : 1/1/0001 12:00:00 AM
+Status : Disabled
+StatusReason : Reason1
+StatusUpdatedTime : 1/17/2020 10:15:04 PM
+CloudToDeviceMessageCount : 0
+Authentication : Sas
+EdgeEnabled : False
+DeviceScope :
+```
+
+Get the details of an IoT Hub device.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DeviceId
+Target Device Id.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+IotHub object
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+Parameter Sets: InputObjectSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -IotHubName
+Name of the Iot Hub
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSet
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Name of the Resource Group
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+IotHub Resource Id
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[]
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md
new file mode 100644
index 000000000000..8fc92be36b66
--- /dev/null
+++ b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md
@@ -0,0 +1,208 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll-Help.xml
+Module Name: Az.IotHub
+online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/remove-aziothubdevice
+schema: 2.0.0
+---
+
+# Remove-AzIotHubDevice
+
+## SYNOPSIS
+Delete an IoT Hub device.
+
+## SYNTAX
+
+### ResourceSet (Default)
+```
+Remove-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId ] [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### InputObjectSet
+```
+Remove-AzIotHubDevice [-InputObject] [-DeviceId ] [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdSet
+```
+Remove-AzIotHubDevice [-ResourceId] [-DeviceId ] [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+Delete all devices or a specific device from an Iot Hub.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub"
+```
+
+Delete all Iot Hub devices.
+
+### Example 2
+```powershell
+PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -PassThru
+
+True
+```
+
+Delete an Iot Hub device.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DeviceId
+Target Device Id.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+IotHub object
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+Parameter Sets: InputObjectSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -IotHubName
+Name of the Iot Hub
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSet
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -PassThru
+Allows to return the boolean object.
+By default, this cmdlet does not generate any output.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Name of the Resource Group
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+IotHub Resource Id
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+
+### System.String
+
+## OUTPUTS
+
+### System.Boolean
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/IotHub/IotHub/help/Set-AzIotHubDevice.md b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md
new file mode 100644
index 000000000000..ba0e29465fff
--- /dev/null
+++ b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md
@@ -0,0 +1,327 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll-Help.xml
+Module Name: Az.IotHub
+online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/set-aziothubdevice
+schema: 2.0.0
+---
+
+# Set-AzIotHubDevice
+
+## SYNOPSIS
+Update an IoT Hub device.
+
+## SYNTAX
+
+### ResourceSetForStatus (Default)
+```
+Set-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId]
+ [-Status ] [-StatusReason ] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### InputObjectSetForAuth
+```
+Set-AzIotHubDevice [-InputObject] [-DeviceId] [-AuthMethod ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### InputObjectSetForStatus
+```
+Set-AzIotHubDevice [-InputObject] [-DeviceId] [-Status ]
+ [-StatusReason ] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### InputObjectSetForEdgeEnabled
+```
+Set-AzIotHubDevice [-InputObject] [-DeviceId] [-EdgeEnabled ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceSetForAuth
+```
+Set-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId]
+ [-AuthMethod ] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### ResourceSetForEdgeEnabled
+```
+Set-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId]
+ [-EdgeEnabled ] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdSetForAuth
+```
+Set-AzIotHubDevice [-ResourceId] [-DeviceId] [-AuthMethod ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdSetForStatus
+```
+Set-AzIotHubDevice [-ResourceId] [-DeviceId] [-Status ]
+ [-StatusReason ] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdSetForEdgeEnabled
+```
+Set-AzIotHubDevice [-ResourceId] [-DeviceId] [-EdgeEnabled ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+Update an IoT Hub device.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -EdgeEnabled
+```
+
+Turn on edge capabilities for device.
+
+### Example 2
+```powershell
+PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -Status Disabled
+```
+
+Disable device status.
+
+### Example 3
+```powershell
+PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -AuthMethod "x509_ca"
+```
+
+Update authorization type of an Iot Hub device.
+
+## PARAMETERS
+
+### -AuthMethod
+The authorization type an entity is to be created with.
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType
+Parameter Sets: InputObjectSetForAuth, ResourceSetForAuth, ResourceIdSetForAuth
+Aliases:
+Accepted values: shared_private_key, x509_thumbprint, x509_ca
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DeviceId
+Target Device Id.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -EdgeEnabled
+Flag indicating edge enablement.
+
+```yaml
+Type: System.Boolean
+Parameter Sets: InputObjectSetForEdgeEnabled, ResourceSetForEdgeEnabled, ResourceIdSetForEdgeEnabled
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+IotHub object
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+Parameter Sets: InputObjectSetForAuth, InputObjectSetForStatus, InputObjectSetForEdgeEnabled
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -IotHubName
+Name of the Iot Hub
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSetForStatus, ResourceSetForAuth, ResourceSetForEdgeEnabled
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -PrimaryThumbprint
+Explicit self-signed certificate thumbprint to use for primary key.
+
+```yaml
+Type: System.String
+Parameter Sets: InputObjectSetForAuth, ResourceSetForAuth, ResourceIdSetForAuth
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Name of the Resource Group
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSetForStatus, ResourceSetForAuth, ResourceSetForEdgeEnabled
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+IotHub Resource Id
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdSetForAuth, ResourceIdSetForStatus, ResourceIdSetForEdgeEnabled
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -SecondaryThumbprint
+Explicit self-signed certificate thumbprint to use for secondary key.
+
+```yaml
+Type: System.String
+Parameter Sets: InputObjectSetForAuth, ResourceSetForAuth, ResourceIdSetForAuth
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Status
+Set device status upon creation.
+
+```yaml
+Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus
+Parameter Sets: ResourceSetForStatus, InputObjectSetForStatus, ResourceIdSetForStatus
+Aliases:
+Accepted values: Enabled, Disabled
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -StatusReason
+Description for device status.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceSetForStatus, InputObjectSetForStatus, ResourceIdSetForStatus
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice
+
+## NOTES
+
+## RELATED LINKS
diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json
index 353e8e30b652..bafcec67a91f 100644
--- a/tools/SecurityTools/CredScanSuppressions.json
+++ b/tools/SecurityTools/CredScanSuppressions.json
@@ -529,14 +529,18 @@
"file": "src\\IotHub\\IotHub.Test\\ScenarioTests\\IotHubRoutingTests.ps1",
"_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
},
- {
- "file": "src\\IotHub\\IotHub.Test\\SessionRecords\\Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests\\TestAzureIotHubRoutingLifeCycle.json",
- "_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
- },
- {
- "file": "src\\IotHub\\IotHub.Test\\SessionRecords\\Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests\\TestAzureIotHubLifeCycle.json",
- "_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
- },
+ {
+ "file": "src\\IotHub\\IotHub.Test\\SessionRecords\\Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests\\TestAzureIotHubRoutingLifeCycle.json",
+ "_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
+ },
+ {
+ "file": "src\\IotHub\\IotHub.Test\\SessionRecords\\Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests\\TestAzureIotHubLifeCycle.json",
+ "_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
+ },
+ {
+ "file": "src\\IotHub\\IotHub.Test\\SessionRecords\\Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests\\TestAzureIotHubDeviceLifecycle.json",
+ "_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
+ },
{
"file": "src\\Compute\\Compute.Test\\SessionRecords\\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests\\TestAEMExtensionAdvancedLinux.json",
"_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
diff --git a/tools/StaticAnalysis/Exceptions/Az.IotHub/MissingAssemblies.csv b/tools/StaticAnalysis/Exceptions/Az.IotHub/MissingAssemblies.csv
index c3eafc34fa90..21d0925113c5 100644
--- a/tools/StaticAnalysis/Exceptions/Az.IotHub/MissingAssemblies.csv
+++ b/tools/StaticAnalysis/Exceptions/Az.IotHub/MissingAssemblies.csv
@@ -1,3 +1,4 @@
"Directory","Assembly Name","Assembly Version","Referencing Assembly","Severity","ProblemId","Description","Remediation"
"Az.IotHub","Microsoft.Win32.Registry","4.1.1.0","System.Management.Automation","0","3000","Missing assembly Microsoft.Win32.Registry referenced from System.Management.Automation","Ensure that the assembly is included in the Wix file or directory"
"Az.IotHub","Microsoft.PowerShell.CoreCLR.Eventing","6.1.0.0","System.Management.Automation","0","3000","Missing assembly Microsoft.PowerShell.CoreCLR.Eventing referenced from System.Management.Automation","Ensure that the assembly is included in the Wix file or directory"
+"Az.IotHub","System.Reflection.TypeExtensions","4.0.0.0","Microsoft.Azure.Amqp","0","3000","Missing assembly System.Reflection.TypeExtensions referenced from Microsoft.Azure.Amqp","Ensure that the assembly is included in the Wix file or directory"
\ No newline at end of file