From 3d222014283b940b92347b015e6ba65727373861 Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Mon, 16 Dec 2019 17:40:29 -0800 Subject: [PATCH 01/44] Manage device cmdlets --- .../ScenarioTests/IotHubDPDeviceTests.cs | 40 + .../ScenarioTests/IotHubDPDeviceTests.ps1 | 93 + .../TestAzureIotHubDeviceLifecycle.json | 1765 +++++++++ .../TestAzureIotHubRoutingLifeCycle.json | 2129 +++++----- .../TestAzureIotHubLifeCycle.json | 3409 ++++++++++------- src/IotHub/IotHub/Az.IotHub.psd1 | 4 +- .../IotHub/Common/IotHubDataPlaneUtils.cs | 39 + src/IotHub/IotHub/Common/IotHubUtils.cs | 75 + src/IotHub/IotHub/IotHub.csproj | 1 + src/IotHub/IotHub/IotHub.format.ps1xml | 115 + .../DataPlane/Device/AddAzIotHubDevice.cs | 159 + .../DataPlane/Device/GetAzIotHubDevice.cs | 109 + .../DataPlane/Device/RemoveAzIotHubDevice.cs | 145 + .../DataPlane/Device/SetAzIotHubDevice.cs | 208 + .../Models/PSAuthenticationMechanism.cs | 43 + .../DataPlane/Models/PSAuthenticationType.cs | 27 + .../IotHub/DataPlane/Models/PSDevice.cs | 103 + .../DataPlane/Models/PSDeviceAuthType.cs | 26 + .../DataPlane/Models/PSDeviceCapabilities.cs | 29 + .../Models/PSDeviceConnectionState.cs | 36 + .../IotHub/DataPlane/Models/PSDeviceStatus.cs | 36 + .../IotHub/DataPlane/Models/PSSymmetricKey.cs | 35 + .../DataPlane/Models/PSX509Thumbprint.cs | 35 + .../IotHub/Properties/Resources.Designer.cs | 27 + src/IotHub/IotHub/Properties/Resources.resx | 9 + src/IotHub/IotHub/help/Add-AzIotHubDevice.md | 256 ++ src/IotHub/IotHub/help/Get-AzIotHubDevice.md | 182 + .../IotHub/help/Remove-AzIotHubDevice.md | 209 + src/IotHub/IotHub/help/Set-AzIotHubDevice.md | 298 ++ 29 files changed, 7214 insertions(+), 2428 deletions(-) create mode 100644 src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.cs create mode 100644 src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 create mode 100644 src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json create mode 100644 src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationMechanism.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSAuthenticationType.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSDevice.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceAuthType.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceConnectionState.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceStatus.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSSymmetricKey.cs create mode 100644 src/IotHub/IotHub/IotHub/DataPlane/Models/PSX509Thumbprint.cs create mode 100644 src/IotHub/IotHub/help/Add-AzIotHubDevice.md create mode 100644 src/IotHub/IotHub/help/Get-AzIotHubDevice.md create mode 100644 src/IotHub/IotHub/help/Remove-AzIotHubDevice.md create mode 100644 src/IotHub/IotHub/help/Set-AzIotHubDevice.md 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..b1a3205ae38e --- /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 -Name $IotHubName + Assert-True { $devices.Count -eq 0 } + + # Add iot device with symmetric authentication + $newDevice1 = Add-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $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 -Name $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 -Name $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 -Name $IotHubName + Assert-True { $devices.Count -eq 3} + + # Update Device + $updatedDevice1 = Set-AzIoTHubDevice -ResourceGroupName $ResourceGroupName -Name $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 -Name $IotHubName -DeviceId $device3 -EdgeEnabled $true + Assert-True { $updatedDevice2.Capabilities.IotEdge } + + # Get device detail + $iotDevice = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $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 -Name $IotHubName -DeviceId $device1 -Passthru + Assert-True { $result } + + # Delete all devices + $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $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..4bc3f63ea82f --- /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": [ + "864eb5d0-6efc-4240-a8ab-257be6991e66" + ], + "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.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "25e023ba-1451-414c-b3bc-511a1c8d4bd6" + ], + "x-ms-correlation-request-id": [ + "25e023ba-1451-414c-b3bc-511a1c8d4bd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233145Z:25e023ba-1451-414c-b3bc-511a1c8d4bd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:31:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "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-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/ps3256?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzI1Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3930ee07-8ea8-4f84-a0ec-91d512c5a790" + ], + "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.4" + ], + "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": [ + "8aa6ab00-a2b6-4447-b7f6-26b5e505378d" + ], + "x-ms-correlation-request-id": [ + "8aa6ab00-a2b6-4447-b7f6-26b5e505378d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233146Z:8aa6ab00-a2b6-4447-b7f6-26b5e505378d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:31:45 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256\",\r\n \"name\": \"ps3256\",\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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/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": [ + "83d6c6fb-7386-4414-b110-0850c04bf8dd" + ], + "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/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?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": [ + "f05fb0a7-3f5d-4f6a-926f-55b29eb90360" + ], + "x-ms-correlation-request-id": [ + "f05fb0a7-3f5d-4f6a-926f-55b29eb90360" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233203Z:f05fb0a7-3f5d-4f6a-926f-55b29eb90360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:32:03 GMT" + ], + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\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/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpVNU1HRXpaV1F0WlRka05pMDBOalkyTFRrMk9USXROekZoTnpnNVpqZzFOVFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": [ + "a4abc857-cc9a-491b-a3cd-6ccc3053486c" + ], + "x-ms-correlation-request-id": [ + "a4abc857-cc9a-491b-a3cd-6ccc3053486c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233233Z:a4abc857-cc9a-491b-a3cd-6ccc3053486c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:32:33 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/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpVNU1HRXpaV1F0WlRka05pMDBOalkyTFRrMk9USXROekZoTnpnNVpqZzFOVFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": [ + "11997" + ], + "x-ms-request-id": [ + "73f0b921-9b5c-4988-912b-b184691493dc" + ], + "x-ms-correlation-request-id": [ + "73f0b921-9b5c-4988-912b-b184691493dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233304Z:73f0b921-9b5c-4988-912b-b184691493dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:03 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/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpVNU1HRXpaV1F0WlRka05pMDBOalkyTFRrMk9USXROekZoTnpnNVpqZzFOVFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": [ + "b5ce08cf-a636-4b24-a5cf-cb307a7565a3" + ], + "x-ms-correlation-request-id": [ + "b5ce08cf-a636-4b24-a5cf-cb307a7565a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233334Z:b5ce08cf-a636-4b24-a5cf-cb307a7565a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:33 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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/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": [ + "e937e481-df6a-42f6-8193-21d3b4dc0eae" + ], + "x-ms-correlation-request-id": [ + "e937e481-df6a-42f6-8193-21d3b4dc0eae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233334Z:e937e481-df6a-42f6-8193-21d3b4dc0eae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:33 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "556c4c39-f3ed-4dad-b64f-1a22722ead7e" + ], + "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": [ + "80b0f7a5-c0b3-430a-b2be-39db44134bdc" + ], + "x-ms-correlation-request-id": [ + "80b0f7a5-c0b3-430a-b2be-39db44134bdc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233335Z:80b0f7a5-c0b3-430a-b2be-39db44134bdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:34 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a88c3780-6404-49cc-92a8-23ad74979fa9" + ], + "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": [ + "8ec83942-d66a-4e98-88d4-fd50d63fb90c" + ], + "x-ms-correlation-request-id": [ + "8ec83942-d66a-4e98-88d4-fd50d63fb90c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233336Z:8ec83942-d66a-4e98-88d4-fd50d63fb90c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:35 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d4bfc45-389d-4728-ad69-3e5f07d9afcf" + ], + "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": [ + "8b1152a3-4ac0-4be3-b712-7497e80b02a3" + ], + "x-ms-correlation-request-id": [ + "8b1152a3-4ac0-4be3-b712-7497e80b02a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233337Z:8b1152a3-4ac0-4be3-b712-7497e80b02a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:36 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c2f5051-1d12-4562-a45a-29a1f85e646a" + ], + "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": [ + "c8fa5c26-528e-4d14-a944-5adc04d849cd" + ], + "x-ms-correlation-request-id": [ + "c8fa5c26-528e-4d14-a944-5adc04d849cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233338Z:c8fa5c26-528e-4d14-a944-5adc04d849cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:37 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50507709-c2e0-46b3-ba40-37258d20d11e" + ], + "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": [ + "2341a8eb-6ef3-491a-9a8b-f834dcd7205e" + ], + "x-ms-correlation-request-id": [ + "2341a8eb-6ef3-491a-9a8b-f834dcd7205e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233339Z:2341a8eb-6ef3-491a-9a8b-f834dcd7205e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:38 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2d13ba4-8c0a-4a42-870a-54f1e1073a54" + ], + "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": [ + "5cd8290a-623f-428a-a5c7-da38e9a95617" + ], + "x-ms-correlation-request-id": [ + "5cd8290a-623f-428a-a5c7-da38e9a95617" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233339Z:5cd8290a-623f-428a-a5c7-da38e9a95617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:38 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc4c6b00-8657-42a5-a3a1-5c52ee4063b4" + ], + "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": [ + "fb0f7c30-6e7a-4e4f-9305-b98550ba02f6" + ], + "x-ms-correlation-request-id": [ + "fb0f7c30-6e7a-4e4f-9305-b98550ba02f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233340Z:fb0f7c30-6e7a-4e4f-9305-b98550ba02f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:39 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42f2b1f7-c6cf-4d4b-adde-ed6b68880c72" + ], + "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": [ + "86e9b105-6f10-449f-ab03-27880c57c31c" + ], + "x-ms-correlation-request-id": [ + "86e9b105-6f10-449f-ab03-27880c57c31c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233341Z:86e9b105-6f10-449f-ab03-27880c57c31c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:41 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70f18e21-fda4-4a4b-ad17-972a86bb063e" + ], + "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": [ + "699d3be3-a2a4-4759-910f-b07ad9fd295f" + ], + "x-ms-correlation-request-id": [ + "699d3be3-a2a4-4759-910f-b07ad9fd295f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233342Z:699d3be3-a2a4-4759-910f-b07ad9fd295f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:42 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2b0fe4b-c03a-4246-be77-95e74374cb1c" + ], + "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": [ + "27a17faf-0f73-464f-b8c2-2c4d45c07ced" + ], + "x-ms-correlation-request-id": [ + "27a17faf-0f73-464f-b8c2-2c4d45c07ced" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233343Z:27a17faf-0f73-464f-b8c2-2c4d45c07ced" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:43 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62b44c11-86dc-4902-87d3-2ffea80bea7e" + ], + "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": [ + "848a8a06-015b-4db0-be2b-83322de12aee" + ], + "x-ms-correlation-request-id": [ + "848a8a06-015b-4db0-be2b-83322de12aee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233343Z:848a8a06-015b-4db0-be2b-83322de12aee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:43 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d7c71b5-9e39-45b0-81f8-5c94e2cae29b" + ], + "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": [ + "97def6dd-e8ed-4615-a2fd-843610e5f83a" + ], + "x-ms-correlation-request-id": [ + "97def6dd-e8ed-4615-a2fd-843610e5f83a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233336Z:97def6dd-e8ed-4615-a2fd-843610e5f83a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:35 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88727b22-37a5-4f13-a40d-b2b86eeea37e" + ], + "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": [ + "48998645-5603-416f-a4f6-ab69647ac4e4" + ], + "x-ms-correlation-request-id": [ + "48998645-5603-416f-a4f6-ab69647ac4e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233337Z:48998645-5603-416f-a4f6-ab69647ac4e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:36 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "809e7556-77ab-476f-8643-b67d42aac5f9" + ], + "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": [ + "a6904473-ed8a-4e60-9445-d8a226725890" + ], + "x-ms-correlation-request-id": [ + "a6904473-ed8a-4e60-9445-d8a226725890" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233338Z:a6904473-ed8a-4e60-9445-d8a226725890" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:37 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3faa23a6-dd50-4a36-bc01-5b7176f67c28" + ], + "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": [ + "0ec10c97-027d-4201-9d20-83a6563f5f87" + ], + "x-ms-correlation-request-id": [ + "0ec10c97-027d-4201-9d20-83a6563f5f87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233339Z:0ec10c97-027d-4201-9d20-83a6563f5f87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:38 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bcb8c51-5f59-47db-8592-9f8946bd5b8f" + ], + "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": [ + "5e4e2828-091c-461a-b1ab-e50e444ebe51" + ], + "x-ms-correlation-request-id": [ + "5e4e2828-091c-461a-b1ab-e50e444ebe51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233339Z:5e4e2828-091c-461a-b1ab-e50e444ebe51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:38 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c7e3ccb-a527-42a7-9405-29e9c1ab9b08" + ], + "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": [ + "53085ee1-635c-42b1-b688-552328e91bd6" + ], + "x-ms-correlation-request-id": [ + "53085ee1-635c-42b1-b688-552328e91bd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233340Z:53085ee1-635c-42b1-b688-552328e91bd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:39 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb30a16c-fb85-4100-8d46-5c31af614ea9" + ], + "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": [ + "dad75bdc-76ee-4117-b3e4-0038e25ef530" + ], + "x-ms-correlation-request-id": [ + "dad75bdc-76ee-4117-b3e4-0038e25ef530" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233341Z:dad75bdc-76ee-4117-b3e4-0038e25ef530" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:41 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2cf1e085-1f71-4657-b0b9-2fd0fed101bc" + ], + "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": [ + "a08aa549-90aa-40db-a8e0-7b779ea7bd7f" + ], + "x-ms-correlation-request-id": [ + "a08aa549-90aa-40db-a8e0-7b779ea7bd7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233342Z:a08aa549-90aa-40db-a8e0-7b779ea7bd7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:42 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d851ab73-1ab9-4963-b05a-5420f6c83586" + ], + "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": [ + "69e8085a-d383-463a-bb4b-9b420605d6ff" + ], + "x-ms-correlation-request-id": [ + "69e8085a-d383-463a-bb4b-9b420605d6ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233343Z:69e8085a-d383-463a-bb4b-9b420605d6ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:43 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c2e711a-5fee-4546-ae4c-828bc541bd13" + ], + "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": [ + "3ccb9826-7864-493b-9147-fa091c294c2a" + ], + "x-ms-correlation-request-id": [ + "3ccb9826-7864-493b-9147-fa091c294c2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200122T233344Z:3ccb9826-7864-493b-9147-fa091c294c2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jan 2020 23:33:44 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\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureRmIotHubDeviceLifecycle": [ + "ps2766", + "ps3256", + "ps3418", + "ps6643", + "ps8621" + ] + }, + "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 31c0579cffaa..613f082f1353 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -91,7 +91,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/Common/IotHubDataPlaneUtils.cs b/src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs new file mode 100644 index 000000000000..13d00f5330e6 --- /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 Microsoft.Azure.Commands.Management.IotHub.Models; + using Microsoft.Azure.Devices; + using System.Collections.Generic; + using System.Linq; + + 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..fa44adc57ecb 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..2a20b22d89ef --- /dev/null +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs @@ -0,0 +1,159 @@ +// ---------------------------------------------------------------------------------- +// +// 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 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 Name { get; set; } + + [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Target DeviceId.")] + [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.Name = this.InputObject.Name; + iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); + } + else + { + if (ParameterSetName.Equals(ResourceIdParameterSet)) + { + this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); + this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + } + + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + } + + IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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..c377e8c0596f --- /dev/null +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs @@ -0,0 +1,109 @@ +// ---------------------------------------------------------------------------------- +// +// 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("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 Name { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target DeviceId.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target DeviceId.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Target DeviceId.")] + [ValidateNotNullOrEmpty] + public string DeviceId { get; set; } + + public override void ExecuteCmdlet() + { + IotHubDescription iotHubDescription; + if (ParameterSetName.Equals(InputObjectParameterSet)) + { + this.ResourceGroupName = this.InputObject.Resourcegroup; + this.Name = this.InputObject.Name; + iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); + } + else + { + if (ParameterSetName.Equals(ResourceIdParameterSet)) + { + this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); + this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + } + + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + } + + IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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..f8d599764a4b --- /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 Name { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target DeviceId.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target DeviceId.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Target DeviceId.")] + [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.Name = this.InputObject.Name; + iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); + } + else + { + if (ParameterSetName.Equals(ResourceIdParameterSet)) + { + this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); + this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + } + + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + } + + IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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..b9d7be842bd2 --- /dev/null +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs @@ -0,0 +1,208 @@ +// ---------------------------------------------------------------------------------- +// +// 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 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 Name { get; set; } + + [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForAuth, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForAuth, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForStatus, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForStatus, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForEdgeEnabled, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForEdgeEnabled, HelpMessage = "Target DeviceId.")] + [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForEdgeEnabled, HelpMessage = "Target DeviceId.")] + [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.SetIotHubDevice)) + { + IotHubDescription iotHubDescription = null; + switch (ParameterSetName) + { + case InputObjectParameterSetForAuth: + case InputObjectParameterSetForStatus: + case InputObjectParameterSetForEdgeEnabled: + this.ResourceGroupName = this.InputObject.Resourcegroup; + this.Name = this.InputObject.Name; + iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); + break; + case ResourceIdParameterSetForAuth: + case ResourceIdParameterSetForStatus: + case ResourceIdParameterSetForEdgeEnabled: + this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); + this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + break; + } + + if (iotHubDescription == null) + { + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + } + + IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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..30aa1d251a18 --- /dev/null +++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs @@ -0,0 +1,29 @@ +// 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; + + /// + /// Status of Capabilities enabled on the device. + /// + + public class PSDeviceCapabilities + { + /// + /// IoT Edge capability. + /// + [JsonProperty(PropertyName = "iotEdge")] + 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..7f90f7ec0a7d 100644 --- a/src/IotHub/IotHub/Properties/Resources.Designer.cs +++ b/src/IotHub/IotHub/Properties/Resources.Designer.cs @@ -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. /// @@ -238,6 +256,15 @@ internal static string RemoveIotHubRoutingEndpoint { } } + /// + /// Looks up a localized string similar to Set Device. + /// + internal static string SetIotHubDevice { + get { + return ResourceManager.GetString("SetIotHubDevice", resourceCulture); + } + } + /// /// Looks up a localized string similar to Update IoT Hub . /// diff --git a/src/IotHub/IotHub/Properties/Resources.resx b/src/IotHub/IotHub/Properties/Resources.resx index 24a4798911bb..f10218c880f0 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 + + + Set 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..1b3c5141b378 --- /dev/null +++ b/src/IotHub/IotHub/help/Add-AzIotHubDevice.md @@ -0,0 +1,256 @@ +--- +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 +Add a device in an IoT Hub. + +## SYNTAX + +### ResourceSet (Default) +``` +Add-AzIotHubDevice [-ResourceGroupName] [-Name] [-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" -Name "myiothub" -DeviceId "myDevice1" -AuthMethod "shared_private_key" -EdgeEnabled +``` + +Add an edge enabled IoT device with default authorization (shared private key). + +### Example 2 +```powershell +PS C:\> Add-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice2" -AuthMethod "x509_ca" -Status Disabled -StatusReason "Some Reason" +``` + +Add 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: 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: 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 DeviceId. + +```yaml +Type: 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: 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: PSIotHub +Parameter Sets: InputObjectSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the Iot Hub + +```yaml +Type: 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: 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: String +Parameter Sets: ResourceIdSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -status +Set device status upon creation. + +```yaml +Type: 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: 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: 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: 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/Get-AzIotHubDevice.md b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md new file mode 100644 index 000000000000..ab742e65e5f6 --- /dev/null +++ b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md @@ -0,0 +1,182 @@ +--- +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] [-Name] [-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" -Name "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" -Name "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: 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 DeviceId. + +```yaml +Type: 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: PSIotHub +Parameter Sets: InputObjectSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the Iot Hub + +```yaml +Type: 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: 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: 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..817a0749066d --- /dev/null +++ b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md @@ -0,0 +1,209 @@ +--- +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] [-Name] [-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" -Name "myiothub" +``` + +Delete all Iot Hub devices. + +### Example 2 +```powershell +PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "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: 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 DeviceId. + +```yaml +Type: 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: PSIotHub +Parameter Sets: InputObjectSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the Iot Hub + +```yaml +Type: 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: 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: 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: 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: 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: 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..c24a125bacf3 --- /dev/null +++ b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md @@ -0,0 +1,298 @@ +--- +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] [-Name] [-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] [-Name] [-DeviceId] + [-AuthMethod ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ResourceSetForEdgeEnabled +``` +Set-AzIotHubDevice [-ResourceGroupName] [-Name] [-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 +{{Fill in the Description}} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -EdgeEnabled +``` + +Turn on edge capabilities for device. + +### Example 2 +```powershell +PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -Status Disabled +``` + +Disable device status. + +### Example 3 +```powershell +PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "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: 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: 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 DeviceId. + +```yaml +Type: 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: 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: PSIotHub +Parameter Sets: InputObjectSetForAuth, InputObjectSetForStatus, InputObjectSetForEdgeEnabled +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the Iot Hub + +```yaml +Type: String +Parameter Sets: ResourceSetForStatus, ResourceSetForAuth, ResourceSetForEdgeEnabled +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Name of the Resource Group + +```yaml +Type: 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: String +Parameter Sets: ResourceIdSetForAuth, ResourceIdSetForStatus, ResourceIdSetForEdgeEnabled +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -status +Set device status upon creation. + +```yaml +Type: 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: 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: 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: 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 From 0ab71e28779a174d1f2fce96ae184d717f64d985 Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Wed, 22 Jan 2020 16:05:30 -0800 Subject: [PATCH 02/44] Fixed build issues --- .../DeviceProvisioningServices.Test.csproj | 1 + src/IotHub/IotHub.Test/IotHub.Test.csproj | 3 +++ src/IotHub/IotHub/Az.IotHub.psd1 | 3 ++- src/IotHub/IotHub/ChangeLog.md | 5 +++++ .../IotHub/Common/IotHubDataPlaneUtils.cs | 4 ++-- src/IotHub/IotHub/IotHub.csproj | 2 ++ .../DataPlane/Device/AddAzIotHubDevice.cs | 1 - .../DataPlane/Device/GetAzIotHubDevice.cs | 1 - .../DataPlane/Device/SetAzIotHubDevice.cs | 1 - src/IotHub/IotHub/help/Az.IotHub.md | 12 +++++++++++ tools/SecurityTools/CredScanSuppressions.json | 20 +++++++++++-------- .../Az.IotHub/MissingAssemblies.csv | 1 + 12 files changed, 40 insertions(+), 14 deletions(-) diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj index b808517ec7d2..11c980b1952f 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..75aabac445f5 100644 --- a/src/IotHub/IotHub.Test/IotHub.Test.csproj +++ b/src/IotHub/IotHub.Test/IotHub.Test.csproj @@ -11,6 +11,9 @@ + + + diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 1e330ddb8823..0178c99bd0b2 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', + 'Microsoft.Azure.Devices.Shared', 'Microsoft.Azure.Amqp' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() 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 index 13d00f5330e6..3e21a1091c64 100644 --- a/src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs +++ b/src/IotHub/IotHub/Common/IotHubDataPlaneUtils.cs @@ -14,10 +14,10 @@ namespace Microsoft.Azure.Commands.Management.IotHub.Common { - using Microsoft.Azure.Commands.Management.IotHub.Models; - using Microsoft.Azure.Devices; using System.Collections.Generic; using System.Linq; + using Microsoft.Azure.Commands.Management.IotHub.Models; + using Microsoft.Azure.Devices; public static class IotHubDataPlaneUtils { diff --git a/src/IotHub/IotHub/IotHub.csproj b/src/IotHub/IotHub/IotHub.csproj index fa44adc57ecb..5bad5fd67707 100644 --- a/src/IotHub/IotHub/IotHub.csproj +++ b/src/IotHub/IotHub/IotHub.csproj @@ -11,7 +11,9 @@ + + diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs index 2a20b22d89ef..c61e907aab45 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs @@ -14,7 +14,6 @@ namespace Microsoft.Azure.Commands.Management.IotHub { - using System; using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Management.IotHub.Common; diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs index c377e8c0596f..8646b24d3cb7 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs @@ -14,7 +14,6 @@ namespace Microsoft.Azure.Commands.Management.IotHub { - using System; using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Management.IotHub.Common; diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs index b9d7be842bd2..b90086609048 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs @@ -14,7 +14,6 @@ namespace Microsoft.Azure.Commands.Management.IotHub { - using System; using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Management.IotHub.Common; diff --git a/src/IotHub/IotHub/help/Az.IotHub.md b/src/IotHub/IotHub/help/Az.IotHub.md index 0cef71e5e28b..aea83b699930 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) +Add 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) +Deletes 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) +Updates an IoT Hub device. + ### [Set-AzIotHubMessageEnrichment](Set-AzIotHubMessageEnrichment.md) Update a message enrichment in your IoT hub. 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..81041ef06029 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" From c76e5cdf397c5bfee225fbc74db5e13798a22e0e Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 26 Jan 2020 13:28:32 -0800 Subject: [PATCH 03/44] adding support for firewall policy on vnet firewall --- .../AzureFirewall/NewAzureFirewallCommand.cs | 48 ++++++++++++++----- 1 file changed, 36 insertions(+), 12 deletions(-) diff --git a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs index 3ceeb6e628e4..76f9f68cfe40 100644 --- a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs +++ b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs @@ -255,22 +255,46 @@ private PSAzureFirewall CreateAzureFirewall() } else { + + if (FirewallPolicyId != null && (this.ApplicationRuleCollection != null || this.NetworkRuleCollection != null || this.NatRuleCollection != null)) + { + throw new ArgumentException("Firewall Policy and Rule Collections cannot coexist"); + } + var sku = new PSAzureFirewallSku(); sku.Name = MNM.AzureFirewallSkuName.AZFWVNet; sku.Tier = MNM.AzureFirewallSkuTier.Standard; - firewall = new PSAzureFirewall() + if (FirewallPolicyId != null) { - Name = this.Name, - ResourceGroupName = this.ResourceGroupName, - Location = this.Location, - ApplicationRuleCollections = this.ApplicationRuleCollection?.ToList(), - NatRuleCollections = this.NatRuleCollection?.ToList(), - NetworkRuleCollections = this.NetworkRuleCollection?.ToList(), - ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, - ThreatIntelWhitelist = this.ThreatIntelWhitelist, - PrivateRange = this.PrivateRange, - Sku = sku - }; + firewall = new PSAzureFirewall() + { + Name = this.Name, + ResourceGroupName = this.ResourceGroupName, + Location = this.Location, + FirewallPolicy = FirewallPolicyId != null ? new MNM.SubResource(FirewallPolicyId) : null, + ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, + ThreatIntelWhitelist = this.ThreatIntelWhitelist, + PrivateRange = this.PrivateRange, + Sku = sku + }; + } + else + { + firewall = new PSAzureFirewall() + { + Name = this.Name, + ResourceGroupName = this.ResourceGroupName, + Location = this.Location, + ApplicationRuleCollections = this.ApplicationRuleCollection?.ToList(), + NatRuleCollections = this.NatRuleCollection?.ToList(), + NetworkRuleCollections = this.NetworkRuleCollection?.ToList(), + ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, + ThreatIntelWhitelist = this.ThreatIntelWhitelist, + PrivateRange = this.PrivateRange, + Sku = sku + }; + } + if (this.Zone != null) { From 353d8601f13fb8317bbc1726ee382f59989376c8 Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Mon, 27 Jan 2020 13:48:44 -0800 Subject: [PATCH 04/44] Remove preview dependencies --- .../DeviceProvisioningServices.Test.csproj | 2 +- src/IotHub/IotHub.Test/IotHub.Test.csproj | 4 +- .../TestAzureIotHubDeviceLifecycle.json | 533 ++++++++++-------- src/IotHub/IotHub/Az.IotHub.psd1 | 4 +- src/IotHub/IotHub/IotHub.csproj | 4 +- .../DataPlane/Models/PSDeviceCapabilities.cs | 3 - 6 files changed, 300 insertions(+), 250 deletions(-) diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj index 11c980b1952f..8e0da3eef65c 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/IotHub/IotHub.Test/IotHub.Test.csproj b/src/IotHub/IotHub.Test/IotHub.Test.csproj index 75aabac445f5..493bf1228665 100644 --- a/src/IotHub/IotHub.Test/IotHub.Test.csproj +++ b/src/IotHub/IotHub.Test/IotHub.Test.csproj @@ -11,9 +11,7 @@ - - - + 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 index 4bc3f63ea82f..38b84822245a 100644 --- 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 @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "864eb5d0-6efc-4240-a8ab-257be6991e66" + "a1712553-496c-4b35-aa5f-f224ede18fd3" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "25e023ba-1451-414c-b3bc-511a1c8d4bd6" + "bf406551-177a-4be9-9f24-b237b86cd497" ], "x-ms-correlation-request-id": [ - "25e023ba-1451-414c-b3bc-511a1c8d4bd6" + "bf406551-177a-4be9-9f24-b237b86cd497" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233145Z:25e023ba-1451-414c-b3bc-511a1c8d4bd6" + "WESTUS:20200127T203628Z:bf406551-177a-4be9-9f24-b237b86cd497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:31:45 GMT" + "Mon, 27 Jan 2020 20:36:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,13 +61,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3256?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzI1Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps1082?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMTA4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3930ee07-8ea8-4f84-a0ec-91d512c5a790" + "907ce516-49b3-4e3a-a71c-40104b442810" ], "Accept-Language": [ "en-US" @@ -76,7 +76,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "8aa6ab00-a2b6-4447-b7f6-26b5e505378d" + "5e7b2398-3470-4aa6-bf07-d369722036ef" ], "x-ms-correlation-request-id": [ - "8aa6ab00-a2b6-4447-b7f6-26b5e505378d" + "5e7b2398-3470-4aa6-bf07-d369722036ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233146Z:8aa6ab00-a2b6-4447-b7f6-26b5e505378d" + "WESTUS:20200127T203629Z:5e7b2398-3470-4aa6-bf07-d369722036ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:31:45 GMT" + "Mon, 27 Jan 2020 20:36:29 GMT" ], "Content-Length": [ "165" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256\",\r\n \"name\": \"ps3256\",\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/ps1082\",\r\n \"name\": \"ps1082\",\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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/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": [ - "83d6c6fb-7386-4414-b110-0850c04bf8dd" + "f11e30ba-66e4-4bf0-940d-c4991490d4f8" ], "Accept-Language": [ "en-US" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "f05fb0a7-3f5d-4f6a-926f-55b29eb90360" + "e10b12b4-7dd7-421f-8123-d9e364f1f779" ], "x-ms-correlation-request-id": [ - "f05fb0a7-3f5d-4f6a-926f-55b29eb90360" + "e10b12b4-7dd7-421f-8123-d9e364f1f779" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233203Z:f05fb0a7-3f5d-4f6a-926f-55b29eb90360" + "WESTUS:20200127T203646Z:e10b12b4-7dd7-421f-8123-d9e364f1f779" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:32:03 GMT" + "Mon, 27 Jan 2020 20:36:46 GMT" ], "Content-Length": [ "619" @@ -195,12 +195,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\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/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpVNU1HRXpaV1F0WlRka05pMDBOalkyTFRrMk9USXROekZoTnpnNVpqZzFOVFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "a4abc857-cc9a-491b-a3cd-6ccc3053486c" + "4a0621a9-3e60-4c54-9267-e55d762f8cfb" ], "x-ms-correlation-request-id": [ - "a4abc857-cc9a-491b-a3cd-6ccc3053486c" + "4a0621a9-3e60-4c54-9267-e55d762f8cfb" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233233Z:a4abc857-cc9a-491b-a3cd-6ccc3053486c" + "WESTUS:20200127T203717Z:4a0621a9-3e60-4c54-9267-e55d762f8cfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:32:33 GMT" + "Mon, 27 Jan 2020 20:37:16 GMT" ], "Content-Length": [ "20" @@ -256,8 +256,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpVNU1HRXpaV1F0WlRka05pMDBOalkyTFRrMk9USXROekZoTnpnNVpqZzFOVFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -279,16 +279,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "73f0b921-9b5c-4988-912b-b184691493dc" + "95e38fe6-1fd1-44e9-abc5-4cf5ae4bfa0d" ], "x-ms-correlation-request-id": [ - "73f0b921-9b5c-4988-912b-b184691493dc" + "95e38fe6-1fd1-44e9-abc5-4cf5ae4bfa0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233304Z:73f0b921-9b5c-4988-912b-b184691493dc" + "WESTUS:20200127T203747Z:95e38fe6-1fd1-44e9-abc5-4cf5ae4bfa0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:03 GMT" + "Mon, 27 Jan 2020 20:37:46 GMT" ], "Content-Length": [ "20" @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjU5MGEzZWQtZTdkNi00NjY2LTk2OTItNzFhNzg5Zjg1NTQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpVNU1HRXpaV1F0WlRka05pMDBOalkyTFRrMk9USXROekZoTnpnNVpqZzFOVFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -332,20 +332,77 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" + ], + "x-ms-request-id": [ + "9f19a298-5adb-40ab-b3db-83cc0eead2bf" + ], + "x-ms-correlation-request-id": [ + "9f19a298-5adb-40ab-b3db-83cc0eead2bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200127T203817Z:9f19a298-5adb-40ab-b3db-83cc0eead2bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 20:38:17 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/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": [ + "11993" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b5ce08cf-a636-4b24-a5cf-cb307a7565a3" + "0ac2af70-46ac-465d-ada8-9f5214da2cd9" ], "x-ms-correlation-request-id": [ - "b5ce08cf-a636-4b24-a5cf-cb307a7565a3" + "0ac2af70-46ac-465d-ada8-9f5214da2cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233334Z:b5ce08cf-a636-4b24-a5cf-cb307a7565a3" + "WESTUS:20200127T203847Z:0ac2af70-46ac-465d-ada8-9f5214da2cd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +411,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:33 GMT" + "Mon, 27 Jan 2020 20:38:47 GMT" ], "Content-Length": [ "22" @@ -370,8 +427,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -393,16 +450,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-request-id": [ - "e937e481-df6a-42f6-8193-21d3b4dc0eae" + "b82cb846-2b9e-47cc-8537-f4ac51a05ede" ], "x-ms-correlation-request-id": [ - "e937e481-df6a-42f6-8193-21d3b4dc0eae" + "b82cb846-2b9e-47cc-8537-f4ac51a05ede" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233334Z:e937e481-df6a-42f6-8193-21d3b4dc0eae" + "WESTUS:20200127T203848Z:b82cb846-2b9e-47cc-8537-f4ac51a05ede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +468,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:33 GMT" + "Mon, 27 Jan 2020 20:38:47 GMT" ], "Content-Length": [ "1460" @@ -423,17 +480,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "556c4c39-f3ed-4dad-b64f-1a22722ead7e" + "681ae799-0b47-46d9-b9fb-c391459f6cee" ], "Accept-Language": [ "en-US" @@ -456,16 +513,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-request-id": [ - "80b0f7a5-c0b3-430a-b2be-39db44134bdc" + "5767b0c7-5c54-4515-9760-a6d0fd2e3569" ], "x-ms-correlation-request-id": [ - "80b0f7a5-c0b3-430a-b2be-39db44134bdc" + "5767b0c7-5c54-4515-9760-a6d0fd2e3569" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233335Z:80b0f7a5-c0b3-430a-b2be-39db44134bdc" + "WESTUS:20200127T203848Z:5767b0c7-5c54-4515-9760-a6d0fd2e3569" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +531,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:34 GMT" + "Mon, 27 Jan 2020 20:38:47 GMT" ], "Content-Length": [ "1460" @@ -486,17 +543,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a88c3780-6404-49cc-92a8-23ad74979fa9" + "cd12692f-0f8b-44b8-b0df-4a723679c8f0" ], "Accept-Language": [ "en-US" @@ -519,16 +576,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-request-id": [ - "8ec83942-d66a-4e98-88d4-fd50d63fb90c" + "0942329e-3636-4e51-ac44-ca092ab3ac6d" ], "x-ms-correlation-request-id": [ - "8ec83942-d66a-4e98-88d4-fd50d63fb90c" + "0942329e-3636-4e51-ac44-ca092ab3ac6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233336Z:8ec83942-d66a-4e98-88d4-fd50d63fb90c" + "WESTUS:20200127T203849Z:0942329e-3636-4e51-ac44-ca092ab3ac6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,7 +594,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:35 GMT" + "Mon, 27 Jan 2020 20:38:48 GMT" ], "Content-Length": [ "1460" @@ -549,17 +606,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d4bfc45-389d-4728-ad69-3e5f07d9afcf" + "fc3de98b-809a-43ce-b9f5-f61e5021d553" ], "Accept-Language": [ "en-US" @@ -582,16 +639,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-request-id": [ - "8b1152a3-4ac0-4be3-b712-7497e80b02a3" + "b97fbb5f-0c8b-46ee-907f-c5fbb36f6b0e" ], "x-ms-correlation-request-id": [ - "8b1152a3-4ac0-4be3-b712-7497e80b02a3" + "b97fbb5f-0c8b-46ee-907f-c5fbb36f6b0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233337Z:8b1152a3-4ac0-4be3-b712-7497e80b02a3" + "WESTUS:20200127T203850Z:b97fbb5f-0c8b-46ee-907f-c5fbb36f6b0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,7 +657,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:36 GMT" + "Mon, 27 Jan 2020 20:38:49 GMT" ], "Content-Length": [ "1460" @@ -612,17 +669,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c2f5051-1d12-4562-a45a-29a1f85e646a" + "6a35f2da-60e2-48bf-95e1-9aa3ff7c5682" ], "Accept-Language": [ "en-US" @@ -645,16 +702,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-request-id": [ - "c8fa5c26-528e-4d14-a944-5adc04d849cd" + "4483e613-ae0d-43a8-8af3-ec0710c343a4" ], "x-ms-correlation-request-id": [ - "c8fa5c26-528e-4d14-a944-5adc04d849cd" + "4483e613-ae0d-43a8-8af3-ec0710c343a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233338Z:c8fa5c26-528e-4d14-a944-5adc04d849cd" + "WESTUS:20200127T203851Z:4483e613-ae0d-43a8-8af3-ec0710c343a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,7 +720,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:37 GMT" + "Mon, 27 Jan 2020 20:38:50 GMT" ], "Content-Length": [ "1460" @@ -675,17 +732,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50507709-c2e0-46b3-ba40-37258d20d11e" + "9dc11e43-0bbd-424b-a59f-a8aa3932ba47" ], "Accept-Language": [ "en-US" @@ -708,16 +765,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-request-id": [ - "2341a8eb-6ef3-491a-9a8b-f834dcd7205e" + "a95c6276-2ebc-4fa0-a443-b451ac282e10" ], "x-ms-correlation-request-id": [ - "2341a8eb-6ef3-491a-9a8b-f834dcd7205e" + "a95c6276-2ebc-4fa0-a443-b451ac282e10" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233339Z:2341a8eb-6ef3-491a-9a8b-f834dcd7205e" + "WESTUS:20200127T203852Z:a95c6276-2ebc-4fa0-a443-b451ac282e10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,7 +783,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:38 GMT" + "Mon, 27 Jan 2020 20:38:51 GMT" ], "Content-Length": [ "1460" @@ -738,17 +795,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2d13ba4-8c0a-4a42-870a-54f1e1073a54" + "36d51b0d-f5c7-4170-9988-eb12042ae107" ], "Accept-Language": [ "en-US" @@ -771,16 +828,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-request-id": [ - "5cd8290a-623f-428a-a5c7-da38e9a95617" + "d8918a91-2b11-4508-8771-f7005254bbed" ], "x-ms-correlation-request-id": [ - "5cd8290a-623f-428a-a5c7-da38e9a95617" + "d8918a91-2b11-4508-8771-f7005254bbed" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233339Z:5cd8290a-623f-428a-a5c7-da38e9a95617" + "WESTUS:20200127T203853Z:d8918a91-2b11-4508-8771-f7005254bbed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +846,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:38 GMT" + "Mon, 27 Jan 2020 20:38:52 GMT" ], "Content-Length": [ "1460" @@ -801,17 +858,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc4c6b00-8657-42a5-a3a1-5c52ee4063b4" + "02ef9291-13a3-48aa-8968-f5a506368174" ], "Accept-Language": [ "en-US" @@ -834,16 +891,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-request-id": [ - "fb0f7c30-6e7a-4e4f-9305-b98550ba02f6" + "763637b6-ade8-4eb1-a368-93981e76e4d2" ], "x-ms-correlation-request-id": [ - "fb0f7c30-6e7a-4e4f-9305-b98550ba02f6" + "763637b6-ade8-4eb1-a368-93981e76e4d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233340Z:fb0f7c30-6e7a-4e4f-9305-b98550ba02f6" + "WESTUS:20200127T203854Z:763637b6-ade8-4eb1-a368-93981e76e4d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +909,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:39 GMT" + "Mon, 27 Jan 2020 20:38:53 GMT" ], "Content-Length": [ "1460" @@ -864,17 +921,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42f2b1f7-c6cf-4d4b-adde-ed6b68880c72" + "0566a746-5978-4f6f-8492-bb6a74d95bc0" ], "Accept-Language": [ "en-US" @@ -897,16 +954,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11984" ], "x-ms-request-id": [ - "86e9b105-6f10-449f-ab03-27880c57c31c" + "d1b7dc46-786e-4512-9797-c46a93ffcc46" ], "x-ms-correlation-request-id": [ - "86e9b105-6f10-449f-ab03-27880c57c31c" + "d1b7dc46-786e-4512-9797-c46a93ffcc46" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233341Z:86e9b105-6f10-449f-ab03-27880c57c31c" + "WESTUS:20200127T203854Z:d1b7dc46-786e-4512-9797-c46a93ffcc46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,7 +972,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:41 GMT" + "Mon, 27 Jan 2020 20:38:54 GMT" ], "Content-Length": [ "1460" @@ -927,17 +984,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70f18e21-fda4-4a4b-ad17-972a86bb063e" + "7353fbc6-ba60-4989-ba0d-911f0d699983" ], "Accept-Language": [ "en-US" @@ -960,16 +1017,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-request-id": [ - "699d3be3-a2a4-4759-910f-b07ad9fd295f" + "17eee559-dfbb-4226-b5a0-5ea9e8faa66b" ], "x-ms-correlation-request-id": [ - "699d3be3-a2a4-4759-910f-b07ad9fd295f" + "17eee559-dfbb-4226-b5a0-5ea9e8faa66b" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233342Z:699d3be3-a2a4-4759-910f-b07ad9fd295f" + "WESTUS:20200127T203855Z:17eee559-dfbb-4226-b5a0-5ea9e8faa66b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,7 +1035,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:42 GMT" + "Mon, 27 Jan 2020 20:38:55 GMT" ], "Content-Length": [ "1460" @@ -990,17 +1047,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2b0fe4b-c03a-4246-be77-95e74374cb1c" + "34c089e0-fe78-498b-9283-225f08b5e445" ], "Accept-Language": [ "en-US" @@ -1023,16 +1080,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" ], "x-ms-request-id": [ - "27a17faf-0f73-464f-b8c2-2c4d45c07ced" + "b48dba1a-be58-461d-bbc8-da5c0e8d330b" ], "x-ms-correlation-request-id": [ - "27a17faf-0f73-464f-b8c2-2c4d45c07ced" + "b48dba1a-be58-461d-bbc8-da5c0e8d330b" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233343Z:27a17faf-0f73-464f-b8c2-2c4d45c07ced" + "WESTUS:20200127T203856Z:b48dba1a-be58-461d-bbc8-da5c0e8d330b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,7 +1098,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:43 GMT" + "Mon, 27 Jan 2020 20:38:55 GMT" ], "Content-Length": [ "1460" @@ -1053,17 +1110,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62b44c11-86dc-4902-87d3-2ffea80bea7e" + "d7cc8508-5cf2-4e13-8eb0-7a734d5a1dee" ], "Accept-Language": [ "en-US" @@ -1086,16 +1143,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11981" ], "x-ms-request-id": [ - "848a8a06-015b-4db0-be2b-83322de12aee" + "c827d5f2-40d6-48b0-8048-624676d30a09" ], "x-ms-correlation-request-id": [ - "848a8a06-015b-4db0-be2b-83322de12aee" + "c827d5f2-40d6-48b0-8048-624676d30a09" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233343Z:848a8a06-015b-4db0-be2b-83322de12aee" + "WESTUS:20200127T203857Z:c827d5f2-40d6-48b0-8048-624676d30a09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,7 +1161,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:43 GMT" + "Mon, 27 Jan 2020 20:38:56 GMT" ], "Content-Length": [ "1460" @@ -1116,17 +1173,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766\",\r\n \"name\": \"ps2766\",\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\": \"ps3256\",\r\n \"etag\": \"AAAAAArm0sw=\",\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\": \"ps2766.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2766\",\r\n \"endpoint\": \"sb://iothub-ns-ps2766-2813860-a0f3ea19c3.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d7c71b5-9e39-45b0-81f8-5c94e2cae29b" + "b9e921ff-5e5f-4f12-826e-4e550207fcd2" ], "Accept-Language": [ "en-US" @@ -1152,13 +1209,13 @@ "1199" ], "x-ms-request-id": [ - "97def6dd-e8ed-4615-a2fd-843610e5f83a" + "c1b0730c-9d34-444c-8a31-26099624d6e4" ], "x-ms-correlation-request-id": [ - "97def6dd-e8ed-4615-a2fd-843610e5f83a" + "c1b0730c-9d34-444c-8a31-26099624d6e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233336Z:97def6dd-e8ed-4615-a2fd-843610e5f83a" + "WESTUS:20200127T203849Z:c1b0730c-9d34-444c-8a31-26099624d6e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1224,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:35 GMT" + "Mon, 27 Jan 2020 20:38:48 GMT" ], "Content-Length": [ "905" @@ -1179,17 +1236,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88727b22-37a5-4f13-a40d-b2b86eeea37e" + "362dc8ca-f810-4bb1-b7e0-49e546a97c52" ], "Accept-Language": [ "en-US" @@ -1215,13 +1272,13 @@ "1198" ], "x-ms-request-id": [ - "48998645-5603-416f-a4f6-ab69647ac4e4" + "2d373d11-4add-4746-be5d-ec8014edc276" ], "x-ms-correlation-request-id": [ - "48998645-5603-416f-a4f6-ab69647ac4e4" + "2d373d11-4add-4746-be5d-ec8014edc276" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233337Z:48998645-5603-416f-a4f6-ab69647ac4e4" + "WESTUS:20200127T203850Z:2d373d11-4add-4746-be5d-ec8014edc276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1287,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:36 GMT" + "Mon, 27 Jan 2020 20:38:49 GMT" ], "Content-Length": [ "905" @@ -1242,17 +1299,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "809e7556-77ab-476f-8643-b67d42aac5f9" + "70537435-5a20-433b-a3fb-61498e3c35ed" ], "Accept-Language": [ "en-US" @@ -1278,13 +1335,13 @@ "1197" ], "x-ms-request-id": [ - "a6904473-ed8a-4e60-9445-d8a226725890" + "2f698753-a3fe-4a80-91fe-c5c8d27f8bde" ], "x-ms-correlation-request-id": [ - "a6904473-ed8a-4e60-9445-d8a226725890" + "2f698753-a3fe-4a80-91fe-c5c8d27f8bde" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233338Z:a6904473-ed8a-4e60-9445-d8a226725890" + "WESTUS:20200127T203851Z:2f698753-a3fe-4a80-91fe-c5c8d27f8bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1350,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:37 GMT" + "Mon, 27 Jan 2020 20:38:50 GMT" ], "Content-Length": [ "905" @@ -1305,17 +1362,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3faa23a6-dd50-4a36-bc01-5b7176f67c28" + "be1a4295-a9d6-48b8-b8c5-a28c16e6fa40" ], "Accept-Language": [ "en-US" @@ -1341,13 +1398,13 @@ "1196" ], "x-ms-request-id": [ - "0ec10c97-027d-4201-9d20-83a6563f5f87" + "0b8efc03-2312-4d04-9775-7e3e25a674f5" ], "x-ms-correlation-request-id": [ - "0ec10c97-027d-4201-9d20-83a6563f5f87" + "0b8efc03-2312-4d04-9775-7e3e25a674f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233339Z:0ec10c97-027d-4201-9d20-83a6563f5f87" + "WESTUS:20200127T203852Z:0b8efc03-2312-4d04-9775-7e3e25a674f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,7 +1413,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:38 GMT" + "Mon, 27 Jan 2020 20:38:51 GMT" ], "Content-Length": [ "905" @@ -1368,17 +1425,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bcb8c51-5f59-47db-8592-9f8946bd5b8f" + "8ffad20a-e4fc-4e6e-9592-057a2ba08372" ], "Accept-Language": [ "en-US" @@ -1404,13 +1461,13 @@ "1195" ], "x-ms-request-id": [ - "5e4e2828-091c-461a-b1ab-e50e444ebe51" + "3bd20a10-5039-46c9-9172-6f5c594040ae" ], "x-ms-correlation-request-id": [ - "5e4e2828-091c-461a-b1ab-e50e444ebe51" + "3bd20a10-5039-46c9-9172-6f5c594040ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233339Z:5e4e2828-091c-461a-b1ab-e50e444ebe51" + "WESTUS:20200127T203853Z:3bd20a10-5039-46c9-9172-6f5c594040ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,7 +1476,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:38 GMT" + "Mon, 27 Jan 2020 20:38:52 GMT" ], "Content-Length": [ "905" @@ -1431,17 +1488,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c7e3ccb-a527-42a7-9405-29e9c1ab9b08" + "8b2cb894-dc00-4171-afc7-ee91c9292b67" ], "Accept-Language": [ "en-US" @@ -1467,13 +1524,13 @@ "1194" ], "x-ms-request-id": [ - "53085ee1-635c-42b1-b688-552328e91bd6" + "91be9468-d29d-4305-b8e0-b7a88e9cab95" ], "x-ms-correlation-request-id": [ - "53085ee1-635c-42b1-b688-552328e91bd6" + "91be9468-d29d-4305-b8e0-b7a88e9cab95" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233340Z:53085ee1-635c-42b1-b688-552328e91bd6" + "WESTUS:20200127T203854Z:91be9468-d29d-4305-b8e0-b7a88e9cab95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1539,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:39 GMT" + "Mon, 27 Jan 2020 20:38:53 GMT" ], "Content-Length": [ "905" @@ -1494,17 +1551,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb30a16c-fb85-4100-8d46-5c31af614ea9" + "844ade5d-cbde-42e0-aaee-44cd4e156de7" ], "Accept-Language": [ "en-US" @@ -1530,13 +1587,13 @@ "1193" ], "x-ms-request-id": [ - "dad75bdc-76ee-4117-b3e4-0038e25ef530" + "f2e49357-36c5-41e6-9628-e147484204d1" ], "x-ms-correlation-request-id": [ - "dad75bdc-76ee-4117-b3e4-0038e25ef530" + "f2e49357-36c5-41e6-9628-e147484204d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233341Z:dad75bdc-76ee-4117-b3e4-0038e25ef530" + "WESTUS:20200127T203855Z:f2e49357-36c5-41e6-9628-e147484204d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1602,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:41 GMT" + "Mon, 27 Jan 2020 20:38:54 GMT" ], "Content-Length": [ "905" @@ -1557,17 +1614,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf1e085-1f71-4657-b0b9-2fd0fed101bc" + "5fc877d3-06fa-4007-9c90-ca7e1b05f6f6" ], "Accept-Language": [ "en-US" @@ -1593,13 +1650,13 @@ "1192" ], "x-ms-request-id": [ - "a08aa549-90aa-40db-a8e0-7b779ea7bd7f" + "012a4624-82bf-45e8-a4a5-8a589f3e5f4b" ], "x-ms-correlation-request-id": [ - "a08aa549-90aa-40db-a8e0-7b779ea7bd7f" + "012a4624-82bf-45e8-a4a5-8a589f3e5f4b" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233342Z:a08aa549-90aa-40db-a8e0-7b779ea7bd7f" + "WESTUS:20200127T203856Z:012a4624-82bf-45e8-a4a5-8a589f3e5f4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1665,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:42 GMT" + "Mon, 27 Jan 2020 20:38:55 GMT" ], "Content-Length": [ "905" @@ -1620,17 +1677,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d851ab73-1ab9-4963-b05a-5420f6c83586" + "fa3d5668-708a-4377-be45-bb0d7cae1b11" ], "Accept-Language": [ "en-US" @@ -1656,13 +1713,13 @@ "1191" ], "x-ms-request-id": [ - "69e8085a-d383-463a-bb4b-9b420605d6ff" + "d0cd8ff4-63ea-4635-a005-c2a2bb6f15a7" ], "x-ms-correlation-request-id": [ - "69e8085a-d383-463a-bb4b-9b420605d6ff" + "d0cd8ff4-63ea-4635-a005-c2a2bb6f15a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233343Z:69e8085a-d383-463a-bb4b-9b420605d6ff" + "WESTUS:20200127T203856Z:d0cd8ff4-63ea-4635-a005-c2a2bb6f15a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,7 +1728,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:43 GMT" + "Mon, 27 Jan 2020 20:38:55 GMT" ], "Content-Length": [ "905" @@ -1683,17 +1740,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3256/providers/Microsoft.Devices/IotHubs/ps2766/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3NjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c2e711a-5fee-4546-ae4c-828bc541bd13" + "6ef48a7b-6bd9-46c5-a2e3-d26a6c5289f4" ], "Accept-Language": [ "en-US" @@ -1719,13 +1776,13 @@ "1190" ], "x-ms-request-id": [ - "3ccb9826-7864-493b-9147-fa091c294c2a" + "2f185172-d9cd-47ee-893c-cec0c18bb543" ], "x-ms-correlation-request-id": [ - "3ccb9826-7864-493b-9147-fa091c294c2a" + "2f185172-d9cd-47ee-893c-cec0c18bb543" ], "x-ms-routing-request-id": [ - "WESTUS:20200122T233344Z:3ccb9826-7864-493b-9147-fa091c294c2a" + "WESTUS:20200127T203857Z:2f185172-d9cd-47ee-893c-cec0c18bb543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,7 +1791,7 @@ "nosniff" ], "Date": [ - "Wed, 22 Jan 2020 23:33:44 GMT" + "Mon, 27 Jan 2020 20:38:56 GMT" ], "Content-Length": [ "905" @@ -1746,17 +1803,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"aiNRbn3i1V3Uw0w1c3QZVOx/6w4IoIIa7OeGDsASroc=\",\r\n \"secondaryKey\": \"aUBjbabQCGMLIqfXojnmsinFSsXdix+c8pY5Lat5CGM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tq417tL7d3ysvQNzwSBeiTK/oIJ//Ej7B3RP2krmO9c=\",\r\n \"secondaryKey\": \"Zir7XbQ38YaMZ54EX0l9zBfRrSxetvt0+1zNT7L8x+k=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/sMs13tj+yii4KM6sGhHBdHSmyOjeJoYnZdR7o3NjzA=\",\r\n \"secondaryKey\": \"ild0CFRF8q1aUVKtxDB4KBNY+C3BojbfWLvo01VcGvw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"I4j66X/5LhEv9fUT12zw1h6j0HnKLHKFOuRoH5f4/gI=\",\r\n \"secondaryKey\": \"7gFL/U/UkQ4vKP7+Kyg1PxfSju0d9sqEhHutK9mfpPM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mpmzwNRfLV4duVOUFSl9FRxhkiNJBGGdGvaFWOEQd4E=\",\r\n \"secondaryKey\": \"d7nqu1mr/hOdsn/X5Fusg1tXuQLuPq1Jf0/FywMgWxE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubDeviceLifecycle": [ - "ps2766", - "ps3256", - "ps3418", - "ps6643", - "ps8621" + "ps8102", + "ps1082", + "ps4577", + "ps8842", + "ps3861" ] }, "Variables": { diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 0178c99bd0b2..c36b32e30b54 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -56,8 +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', 'Microsoft.Azure.Devices', - 'Microsoft.Azure.Devices.Shared', 'Microsoft.Azure.Amqp' +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 = @() diff --git a/src/IotHub/IotHub/IotHub.csproj b/src/IotHub/IotHub/IotHub.csproj index 5bad5fd67707..eeb3115af54d 100644 --- a/src/IotHub/IotHub/IotHub.csproj +++ b/src/IotHub/IotHub/IotHub.csproj @@ -11,9 +11,7 @@ - - - + diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs index 30aa1d251a18..9fe55a83d4b4 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceCapabilities.cs @@ -12,8 +12,6 @@ namespace Microsoft.Azure.Commands.Management.IotHub.Models { - using Newtonsoft.Json; - /// /// Status of Capabilities enabled on the device. /// @@ -23,7 +21,6 @@ public class PSDeviceCapabilities /// /// IoT Edge capability. /// - [JsonProperty(PropertyName = "iotEdge")] public bool IotEdge { get; set; } } } From 86084c4759d993cd1c4c4466112f4e6cf91a52cc Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 13:36:49 -0800 Subject: [PATCH 05/44] adding tests --- .../ScenarioTests/AzureFirewallTests.cs | 8 + .../ScenarioTests/AzureFirewallTests.ps1 | 645 +++++++++++++++++- src/Network/Network/ChangeLog.md | 2 + src/Network/Network/help/New-AzFirewall.md | 14 + 4 files changed, 664 insertions(+), 5 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs index 8460010bdbb0..c8e42a812651 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs @@ -81,5 +81,13 @@ public void TestAzureFirewallPrivateRangeCRUD() { TestRunner.RunTestScript("Test-AzureFirewallPrivateRangeCRUD"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] + public void TestAzureFirewallWithFirewallPolicyCRUD() + { + TestRunner.RunTestScript("Test-AzureFirewallWithFirewallPolicyCRUD"); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 index 4d4b6fe8bd8c..cbbab162b65e 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 @@ -21,7 +21,7 @@ function Test-AzureFirewallCRUD { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + $location = Get-ProviderLocation $resourceTypeParent "eastus" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -486,7 +486,7 @@ function Test-AzureFirewallCRUDWithZones { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + $location = Get-ProviderLocation $resourceTypeParent "eastus" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -848,7 +848,7 @@ function Test-AzureFirewallPIPAndVNETObjectTypeParams { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + $location = Get-ProviderLocation $resourceTypeParent "eastus" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -1002,7 +1002,7 @@ function Test-AzureFirewallAllocateAndDeallocate { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + $location = Get-ProviderLocation $resourceTypeParent "eastus" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -1165,7 +1165,7 @@ function Test-AzureFirewallThreatIntelWhitelistCRUD { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + $location = Get-ProviderLocation $resourceTypeParent "eastus" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -1252,3 +1252,638 @@ function Test-AzureFirewallPrivateRangeCRUD { Clean-ResourceGroup $rgname } } + +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests AzureFirewallCRUD. +#> +function Test-AzureFirewallCRUD { + # Setup + $rgname = Get-ResourceGroupName + $azureFirewallName = Get-ResourceName + $resourceTypeParent = "Microsoft.Network/AzureFirewalls" + $location = Get-ProviderLocation $resourceTypeParent "eastus" + + $vnetName = Get-ResourceName + $subnetName = "AzureFirewallSubnet" + $publicIpName = Get-ResourceName + + # AzureFirewallApplicationRuleCollection + $appRcName = "appRc" + $appRcPriority = 100 + $appRcActionType = "Allow" + + # AzureFirewallApplicationRuleCollection 2 + $appRc2Name = "appRc2" + $appRc2Priority = 101 + $appRc2ActionType = "Deny" + + # AzureFirewallApplicationRule 1 + $appRule1Name = "appRule" + $appRule1Desc = "desc1" + $appRule1Fqdn1 = "*google.com" + $appRule1Fqdn2 = "*microsoft.com" + $appRule1Protocol1 = "http:80" + $appRule1Port1 = 80 + $appRule1ProtocolType1 = "http" + $appRule1Protocol2 = "https:443" + $appRule1Port2 = 443 + $appRule1ProtocolType2 = "https" + $appRule1SourceAddress1 = "10.0.0.0" + + # AzureFirewallApplicationRule 2 + $appRule2Name = "appRule2" + $appRule2Fqdn1 = "*bing.com" + $appRule2Protocol1 = "http:8080" + $appRule2Port1 = 8080 + $appRule2ProtocolType1 = "http" + + # AzureFirewallApplicationRule 3 + $appRule3Name = "appRule3" + $appRule3Fqdn1 = "sql1.database.windows.net" + $appRule3Protocol1 = "mssql:1433" + $appRule3Port1 = 1433 + $appRule3ProtocolType1 = "mssql" + + # AzureFirewallNetworkRuleCollection + $networkRcName = "networkRc" + $networkRcPriority = 200 + $networkRcActionType = "Deny" + + # AzureFirewallNetworkRule 1 + $networkRule1Name = "networkRule" + $networkRule1Desc = "desc1" + $networkRule1SourceAddress1 = "10.0.0.0" + $networkRule1SourceAddress2 = "111.1.0.0/24" + $networkRule1DestinationAddress1 = "*" + $networkRule1Protocol1 = "UDP" + $networkRule1Protocol2 = "TCP" + $networkRule1Protocol3 = "ICMP" + $networkRule1DestinationPort1 = "90" + + # AzureFirewallNetworkRule 2 + $networkRule2Name = "networkRule2" + $networkRule2Desc = "desc2" + $networkRule2SourceAddress1 = "10.0.0.0" + $networkRule2SourceAddress2 = "111.1.0.0/24" + $networkRule2DestinationFqdn1 = "www.bing.com" + $networkRule2Protocol1 = "UDP" + $networkRule2Protocol2 = "TCP" + $networkRule2Protocol3 = "ICMP" + $networkRule2DestinationPort1 = "80" + + # AzureFirewallNatRuleCollection + $natRcName = "natRc" + $natRcPriority = 200 + + # AzureFirewallNatRule 1 + $natRule1Name = "natRule" + $natRule1Desc = "desc1" + $natRule1SourceAddress1 = "10.0.0.0" + $natRule1SourceAddress2 = "111.1.0.0/24" + $natRule1DestinationAddress1 = "1.2.3.4" + $natRule1Protocol1 = "UDP" + $natRule1Protocol2 = "TCP" + $natRule1DestinationPort1 = "90" + $natRule1TranslatedAddress = "10.1.2.3" + $natRule1TranslatedPort = "91" + + # AzureFirewallNatRule 2 + $natRule2Name = "natRule2" + $natRule2Desc = "desc2" + $natRule2SourceAddress1 = "10.0.0.0" + $natRule2SourceAddress2 = "111.1.0.0/24" + $natRule2Protocol1 = "UDP" + $natRule2Protocol2 = "TCP" + $natRule2DestinationPort1 = "95" + $natRule2TranslatedFqdn = "server1.internal.com" + $natRule2TranslatedPort = "96" + + try { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } + + # Create the Virtual Network + $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + # Get full subnet details + $subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $vnet -Name $subnetName + + # Create public ip + $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -Sku Standard + + # Create AzureFirewall (with no rules, ThreatIntel is in Alert mode by default) + $azureFirewall = New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName + + # Get AzureFirewall + $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname + + #verification + Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $azureFirewallName $getAzureFirewall.Name + Assert-NotNull $getAzureFirewall.Location + Assert-AreEqual (Normalize-Location $location) $getAzureFirewall.Location + Assert-NotNull $getAzureFirewall.Etag + Assert-AreEqual "Alert" $getAzureFirewall.ThreatIntelMode + Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count + Assert-NotNull $getAzureFirewall.IpConfigurations[0].Subnet.Id + Assert-NotNull $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id + Assert-NotNull $getAzureFirewall.IpConfigurations[0].PrivateIpAddress + Assert-AreEqual $subnet.Id $getAzureFirewall.IpConfigurations[0].Subnet.Id + Assert-AreEqual $publicip.Id $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id + Assert-AreEqual 0 @($getAzureFirewall.ApplicationRuleCollections).Count + Assert-AreEqual 0 @($getAzureFirewall.NatRuleCollections).Count + Assert-AreEqual 0 @($getAzureFirewall.NetworkRuleCollections).Count + + # list all Azure Firewalls in the resource group + $list = Get-AzFirewall -ResourceGroupName $rgname + Assert-AreEqual 1 @($list).Count + Assert-AreEqual $list[0].ResourceGroupName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $list[0].Name $getAzureFirewall.Name + Assert-AreEqual $list[0].Location $getAzureFirewall.Location + Assert-AreEqual $list[0].Etag $getAzureFirewall.Etag + Assert-AreEqual @($list[0].IpConfigurations).Count @($getAzureFirewall.IpConfigurations).Count + Assert-AreEqual @($list[0].IpConfigurations)[0].Subnet.Id $getAzureFirewall.IpConfigurations[0].Subnet.Id + Assert-AreEqual @($list[0].IpConfigurations)[0].PublicIpAddress.Id $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id + Assert-AreEqual @($list[0].IpConfigurations)[0].PrivateIpAddress $getAzureFirewall.IpConfigurations[0].PrivateIpAddress + Assert-AreEqual @($list[0].ApplicationRuleCollections).Count @($getAzureFirewall.ApplicationRuleCollections).Count + Assert-AreEqual @($list[0].NatRuleCollections).Count @($getAzureFirewall.NatRuleCollections).Count + Assert-AreEqual @($list[0].NetworkRuleCollections).Count @($getAzureFirewall.NetworkRuleCollections).Count + + # list all Azure Firewalls under subscription + $listAll = Get-AzureRmFirewall + Assert-NotNull $listAll + + $listAll = Get-AzureRmFirewall -Name "*" + Assert-NotNull $listAll + + $listAll = Get-AzureRmFirewall -ResourceGroupName "*" + Assert-NotNull $listAll + + $listAll = Get-AzureRmFirewall -ResourceGroupName "*" -Name "*" + Assert-NotNull $listAll + + # Create Application Rules + $appRule = New-AzFirewallApplicationRule -Name $appRule1Name -Description $appRule1Desc -Protocol $appRule1Protocol1, $appRule1Protocol2 -TargetFqdn $appRule1Fqdn1, $appRule1Fqdn2 -SourceAddress $appRule1SourceAddress1 + + $appRule2 = New-AzFirewallApplicationRule -Name $appRule2Name -Protocol $appRule2Protocol1 -TargetFqdn $appRule2Fqdn1 + + $appRule3 = New-AzFirewallApplicationRule -Name $appRule3Name -Protocol $appRule3Protocol1 -TargetFqdn $appRule3Fqdn1 + + # Create Application Rule Collection with 1 rule + $appRc = New-AzFirewallApplicationRuleCollection -Name $appRcName -Priority $appRcPriority -Rule $appRule -ActionType $appRcActionType + + # Add a rule to the rule collection using AddRule method + $appRc.AddRule($appRule2) + $appRc.AddRule($appRule3) + + # Create a second Application Rule Collection with 1 rule + $appRc2 = New-AzFirewallApplicationRuleCollection -Name $appRc2Name -Priority $appRc2Priority -Rule $appRule -ActionType $appRc2ActionType + + # Create Network Rule + $networkRule = New-AzFirewallNetworkRule -Name $networkRule1Name -Description $networkRule1Desc -Protocol $networkRule1Protocol1, $networkRule1Protocol2 -SourceAddress $networkRule1SourceAddress1, $networkRule1SourceAddress2 -DestinationAddress $networkRule1DestinationAddress1 -DestinationPort $networkRule1DestinationPort1 + $networkRule.AddProtocol($networkRule1Protocol3) + + # Test handling of incorrect values + Assert-ThrowsContains { $networkRule.AddProtocol() } "Cannot find an overload" + Assert-ThrowsContains { $networkRule.AddProtocol($null) } "A protocol must be provided" + Assert-ThrowsContains { $networkRule.AddProtocol("ABCD") } "Invalid protocol" + + # Create Network Rule Collection + $netRc = New-AzFirewallNetworkRuleCollection -Name $networkRcName -Priority $networkRcPriority -Rule $networkRule -ActionType $networkRcActionType + + # Create Second Network Rule + $networkRule2 = New-AzFirewallNetworkRule -Name $networkRule2Name -Description $networkRule2Desc -Protocol $networkRule2Protocol1, $networkRule2Protocol2 -SourceAddress $networkRule2SourceAddress1, $networkRule2SourceAddress2 -DestinationFqdn $networkRule2DestinationFqdn1 -DestinationPort $networkRule2DestinationPort1 + $networkRule2.AddProtocol($networkRule2Protocol3) + + # Add this second Network Rule to the rule collection + $netRc.AddRule($networkRule2) + + # Create a NAT rule + $natRule = New-AzFirewallNatRule -Name $natRule1Name -Description $natRule1Desc -Protocol $natRule1Protocol1 -SourceAddress $natRule1SourceAddress1, $natRule1SourceAddress2 -DestinationAddress $publicip.IpAddress -DestinationPort $natRule1DestinationPort1 -TranslatedAddress $natRule1TranslatedAddress -TranslatedPort $natRule1TranslatedPort + $natRule.AddProtocol($natRule1Protocol2) + + # Test handling of incorrect values + Assert-ThrowsContains { $natRule.AddProtocol() } "Cannot find an overload" + Assert-ThrowsContains { $natRule.AddProtocol($null) } "A protocol must be provided" + Assert-ThrowsContains { $natRule.AddProtocol("ABCD") } "Invalid protocol" + # Test handling of ICMP protocol + Assert-ThrowsContains { + New-AzFirewallNatRule -Name $natRule1Name -Protocol $natRule1Protocol1, "ICMP" -SourceAddress $natRule1SourceAddress1 -DestinationAddress $natRule1DestinationAddress1 -DestinationPort $natRule1DestinationPort1 -TranslatedAddress $natRule1TranslatedAddress -TranslatedPort $natRule1TranslatedPort + } "The argument `"ICMP`" does not belong to the set" + Assert-ThrowsContains { $natRule.AddProtocol("ICMP") } "Invalid protocol" + + # Create second NAT rule + $natRule2 = New-AzFirewallNatRule -Name $natRule2Name -Description $natRule2Desc -Protocol $natRule2Protocol1 -SourceAddress $natRule2SourceAddress1, $natRule2SourceAddress2 -DestinationAddress $publicip.IpAddress -DestinationPort $natRule2DestinationPort1 -TranslatedFqdn $natRule2TranslatedFqdn -TranslatedPort $natRule2TranslatedPort + $natRule2.AddProtocol($natRule2Protocol2) + + # Create a NAT Rule Collection + $natRc = New-AzFirewallNatRuleCollection -Name $natRcName -Priority $natRcPriority -Rule $natRule + + # Add second NAT Rule to rule Collection + $natRc.AddRule($natRule2) + + # Add ApplicationRuleCollections to the Firewall using method AddApplicationRuleCollection + $azureFirewall.AddApplicationRuleCollection($appRc) + $azureFirewall.AddApplicationRuleCollection($appRc2) + + # Add NatRuleCollections to the Firewall using method AddNatRuleCollection + $azureFirewall.AddNatRuleCollection($natRc) + + # Add NetworkRuleCollections to the Firewall using method AddNetworkRuleCollection + $azureFirewall.AddNetworkRuleCollection($netRc) + + # Update ThreatIntel mode + $azureFirewall.ThreatIntelMode = "Deny" + + # Set AzureFirewall + Set-AzFirewall -AzureFirewall $azureFirewall + + # Get AzureFirewall + $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgName + $azureFirewallIpConfiguration = $getAzureFirewall.IpConfigurations + + #verification + Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $azureFirewallName $getAzureFirewall.Name + Assert-NotNull $getAzureFirewall.Location + Assert-AreEqual $location $getAzureFirewall.Location + Assert-NotNull $getAzureFirewall.Etag + Assert-AreEqual "Deny" $getAzureFirewall.ThreatIntelMode + + Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count + Assert-NotNull $azureFirewallIpConfiguration[0].Subnet.Id + Assert-NotNull $azureFirewallIpConfiguration[0].PublicIpAddress.Id + Assert-NotNull $azureFirewallIpConfiguration[0].PrivateIpAddress + + # Check rule collections + Assert-AreEqual 2 @($getAzureFirewall.ApplicationRuleCollections).Count + Assert-AreEqual 3 @($getAzureFirewall.ApplicationRuleCollections[0].Rules).Count + Assert-AreEqual 1 @($getAzureFirewall.ApplicationRuleCollections[1].Rules).Count + + Assert-AreEqual 1 @($getAzureFirewall.NatRuleCollections).Count + Assert-AreEqual 2 @($getAzureFirewall.NatRuleCollections[0].Rules).Count + + Assert-AreEqual 1 @($getAzureFirewall.NetworkRuleCollections).Count + Assert-AreEqual 2 @($getAzureFirewall.NetworkRuleCollections[0].Rules).Count + + $appRc = $getAzureFirewall.GetApplicationRuleCollectionByName($appRcName) + $appRule = $appRc.GetRuleByName($appRule1Name) + $appRule2 = $appRc.GetRuleByName($appRule2Name) + $appRule3 = $appRc.GetRuleByName($appRule3Name) + + # Verify application rule collection 1 + Assert-AreEqual $appRcName $appRc.Name + Assert-AreEqual $appRcPriority $appRc.Priority + Assert-AreEqual $appRcActionType $appRc.Action.Type + + # Verify application rule 1 + Assert-AreEqual $appRule1Name $appRule.Name + Assert-AreEqual $appRule1Desc $appRule.Description + + Assert-AreEqual 1 $appRule.SourceAddresses.Count + Assert-AreEqual $appRule1SourceAddress1 $appRule.SourceAddresses[0] + + Assert-AreEqual 2 $appRule.Protocols.Count + Assert-AreEqual $appRule1ProtocolType1 $appRule.Protocols[0].ProtocolType + Assert-AreEqual $appRule1ProtocolType2 $appRule.Protocols[1].ProtocolType + Assert-AreEqual $appRule1Port1 $appRule.Protocols[0].Port + Assert-AreEqual $appRule1Port2 $appRule.Protocols[1].Port + + Assert-AreEqual 2 $appRule.TargetFqdns.Count + Assert-AreEqual $appRule1Fqdn1 $appRule.TargetFqdns[0] + Assert-AreEqual $appRule1Fqdn2 $appRule.TargetFqdns[1] + + # Verify application rule 2 + Assert-AreEqual $appRule2Name $appRule2.Name + Assert-Null $appRule2.Description + + Assert-AreEqual 0 $appRule2.SourceAddresses.Count + + Assert-AreEqual 1 $appRule2.Protocols.Count + Assert-AreEqual $appRule2ProtocolType1 $appRule2.Protocols[0].ProtocolType + Assert-AreEqual $appRule2Port1 $appRule2.Protocols[0].Port + + Assert-AreEqual 1 $appRule2.TargetFqdns.Count + Assert-AreEqual $appRule2Fqdn1 $appRule2.TargetFqdns[0] + + # Verify application rule 3 + Assert-AreEqual $appRule3Name $appRule3.Name + Assert-Null $appRule3.Description + + Assert-AreEqual 0 $appRule3.SourceAddresses.Count + + Assert-AreEqual 1 $appRule3.Protocols.Count + Assert-AreEqual $appRule3ProtocolType1 $appRule3.Protocols[0].ProtocolType + Assert-AreEqual $appRule3Port1 $appRule3.Protocols[0].Port + + Assert-AreEqual 1 $appRule3.TargetFqdns.Count + Assert-AreEqual $appRule3Fqdn1 $appRule3.TargetFqdns[0] + + # Verify application rule collection 2 + $appRc2 = $getAzureFirewall.GetApplicationRuleCollectionByName($appRc2Name) + + Assert-AreEqual $appRc2Name $appRc2.Name + Assert-AreEqual $appRc2Priority $appRc2.Priority + Assert-AreEqual $appRc2ActionType $appRc2.Action.Type + + # Verify application rule + $appRule = $appRc2.GetRuleByName($appRule1Name) + + Assert-AreEqual $appRule1Name $appRule.Name + Assert-AreEqual $appRule1Desc $appRule.Description + + Assert-AreEqual 1 $appRule.SourceAddresses.Count + Assert-AreEqual $appRule1SourceAddress1 $appRule.SourceAddresses[0] + + Assert-AreEqual 2 $appRule.Protocols.Count + Assert-AreEqual $appRule1ProtocolType1 $appRule.Protocols[0].ProtocolType + Assert-AreEqual $appRule1ProtocolType2 $appRule.Protocols[1].ProtocolType + Assert-AreEqual $appRule1Port1 $appRule.Protocols[0].Port + Assert-AreEqual $appRule1Port2 $appRule.Protocols[1].Port + + Assert-AreEqual 2 $appRule.TargetFqdns.Count + Assert-AreEqual $appRule1Fqdn1 $appRule.TargetFqdns[0] + Assert-AreEqual $appRule1Fqdn2 $appRule.TargetFqdns[1] + + # Verify NAT rule collection and NAT rules + $natRc = $getAzureFirewall.GetNatRuleCollectionByName($natRcName) + $natRule = $natRc.GetRuleByName($natRule1Name) + + Assert-AreEqual $natRcName $natRc.Name + Assert-AreEqual $natRcPriority $natRc.Priority + + Assert-AreEqual $natRule1Name $natRule.Name + Assert-AreEqual $natRule1Desc $natRule.Description + + Assert-AreEqual 2 $natRule.SourceAddresses.Count + Assert-AreEqual $natRule1SourceAddress1 $natRule.SourceAddresses[0] + Assert-AreEqual $natRule1SourceAddress2 $natRule.SourceAddresses[1] + + Assert-AreEqual 1 $natRule.DestinationAddresses.Count + Assert-AreEqual $publicip.IpAddress $natRule.DestinationAddresses[0] + + Assert-AreEqual 2 $natRule.Protocols.Count + Assert-AreEqual $natRule1Protocol1 $natRule.Protocols[0] + Assert-AreEqual $natRule1Protocol2 $natRule.Protocols[1] + + Assert-AreEqual 1 $natRule.DestinationPorts.Count + Assert-AreEqual $natRule1DestinationPort1 $natRule.DestinationPorts[0] + + Assert-AreEqual $natRule1TranslatedAddress $natRule.TranslatedAddress + Assert-AreEqual $natRule1TranslatedPort $natRule.TranslatedPort + + $natRule2 = $natRc.GetRuleByName($natRule2Name) + + Assert-AreEqual $natRule2Name $natRule2.Name + Assert-AreEqual $natRule2Desc $natRule2.Description + + Assert-AreEqual 2 $natRule2.SourceAddresses.Count + Assert-AreEqual $natRule2SourceAddress1 $natRule2.SourceAddresses[0] + Assert-AreEqual $natRule2SourceAddress2 $natRule2.SourceAddresses[1] + + Assert-AreEqual 1 $natRule2.DestinationAddresses.Count + Assert-AreEqual $publicip.IpAddress $natRule2.DestinationAddresses[0] + + Assert-AreEqual 2 $natRule2.Protocols.Count + Assert-AreEqual $natRule2Protocol1 $natRule2.Protocols[0] + Assert-AreEqual $natRule2Protocol2 $natRule2.Protocols[1] + + Assert-AreEqual 1 $natRule2.DestinationPorts.Count + Assert-AreEqual $natRule2DestinationPort1 $natRule2.DestinationPorts[0] + + Assert-AreEqual $natRule2TranslatedFqdn $natRule2.TranslatedFqdn + Assert-AreEqual $natRule2TranslatedPort $natRule2.TranslatedPort + + # Verify network rule collection and network rules + $networkRc = $getAzureFirewall.GetNetworkRuleCollectionByName($networkRcName) + $networkRule = $networkRc.GetRuleByName($networkRule1Name) + + Assert-AreEqual $networkRcName $networkRc.Name + Assert-AreEqual $networkRcPriority $networkRc.Priority + Assert-AreEqual $networkRcActionType $networkRc.Action.Type + + Assert-AreEqual $networkRule1Name $networkRule.Name + Assert-AreEqual $networkRule1Desc $networkRule.Description + + Assert-AreEqual 2 $networkRule.SourceAddresses.Count + Assert-AreEqual $networkRule1SourceAddress1 $networkRule.SourceAddresses[0] + Assert-AreEqual $networkRule1SourceAddress2 $networkRule.SourceAddresses[1] + + Assert-AreEqual 1 $networkRule.DestinationAddresses.Count + Assert-AreEqual $networkRule1DestinationAddress1 $networkRule.DestinationAddresses[0] + + Assert-AreEqual 3 $networkRule.Protocols.Count + Assert-AreEqual $networkRule1Protocol1 $networkRule.Protocols[0] + Assert-AreEqual $networkRule1Protocol2 $networkRule.Protocols[1] + Assert-AreEqual $networkRule1Protocol3 $networkRule.Protocols[2] + + Assert-AreEqual 1 $networkRule.DestinationPorts.Count + Assert-AreEqual $networkRule1DestinationPort1 $networkRule.DestinationPorts[0] + + $networkRule2 = $networkRc.GetRuleByName($networkRule2Name) + + Assert-AreEqual $networkRule2Name $networkRule2.Name + Assert-AreEqual $networkRule2Desc $networkRule2.Description + + Assert-AreEqual 2 $networkRule2.SourceAddresses.Count + Assert-AreEqual $networkRule2SourceAddress1 $networkRule2.SourceAddresses[0] + Assert-AreEqual $networkRule2SourceAddress2 $networkRule2.SourceAddresses[1] + + Assert-AreEqual 1 $networkRule2.DestinationFqdns.Count + Assert-AreEqual $networkRule2DestinationFqdn1 $networkRule2.DestinationFqdns[0] + + Assert-AreEqual 3 $networkRule2.Protocols.Count + Assert-AreEqual $networkRule2Protocol1 $networkRule2.Protocols[0] + Assert-AreEqual $networkRule2Protocol2 $networkRule2.Protocols[1] + Assert-AreEqual $networkRule2Protocol3 $networkRule2.Protocols[2] + + Assert-AreEqual 1 $networkRule2.DestinationPorts.Count + Assert-AreEqual $networkRule2DestinationPort1 $networkRule2.DestinationPorts[0] + + # Delete AzureFirewall + $delete = Remove-AzFirewall -ResourceGroupName $rgname -name $azureFirewallName -PassThru -Force + Assert-AreEqual true $delete + + # Delete VirtualNetwork + $delete = Remove-AzVirtualNetwork -ResourceGroupName $rgname -name $vnetName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzFirewall -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests AzureFirewall Set and Remove IpConfiguration +#> +function Test-AzureFirewallVirtualHubCRUD { + # Setup + $rgname = Get-ResourceGroupName + $azureFirewallName = Get-ResourceName + $resourceTypeParent = "Microsoft.Network/AzureFirewalls" + $policyLocation = "westcentralus" + $location = Get-ProviderLocation $resourceTypeParent + $azureFirewallPolicyName = Get-ResourceName + $sku = "AZFW_Hub" + $tier = "Standard" + + try { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } + + # Create AzureFirewallPolicy (with no rules, ThreatIntel is in Alert mode by default) + $azureFirewallPolicy = New-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname -Location $policyLocation + + # Get the AzureFirewallPolicy + $getazureFirewallPolicy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname + + + Assert-NotNull $azureFirewallPolicy + Assert-NotNull $getazureFirewallPolicy.Id + + $azureFirewallPolicyId = $getazureFirewallPolicy.Id + + New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -Sku $sku -FirewallPolicyId $azureFirewallPolicyId + + # Get AzureFirewall + $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname + + #verification + Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $azureFirewallName $getAzureFirewall.Name + Assert-NotNull $getAzureFirewall.Location + Assert-AreEqual (Normalize-Location $location) $getAzureFirewall.Location + Assert-NotNull $sku $getAzureFirewall.Sku + Assert-AreEqual $sku $getAzureFirewall.Sku.Name + Assert-AreEqual $tier $getAzureFirewall.Sku.Tier + Assert-NotNull $getAzureFirewall.FirewallPolicy + Assert-AreEqual $azureFirewallPolicyId $getAzureFirewall.FirewallPolicy.Id + } + finally { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests AzureFirewallCRUD. +#> +function Test-AzureFirewallWithFirewallPolicyCRUD { + # Setup + $rgname = Get-ResourceGroupName + $azureFirewallName = Get-ResourceName + $resourceTypeParent = "Microsoft.Network/AzureFirewalls" + $firewallPolicyLocation = Get-ProviderLocation $resourceTypeParent "eastus" + $location = Get-ProviderLocation $resourceTypeParent "centraluseuap" + + $vnetName = Get-ResourceName + $subnetName = "AzureFirewallSubnet" + $publicIpName = Get-ResourceName + $azureFirewallPolicyName = Get-ResourceName + + try { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } + + # Create the Virtual Network + $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + # Get full subnet details + $subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $vnet -Name $subnetName + + # Create public ip + $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -Sku Standard + + + # Create AzureFirewallPolicy (with no rules, ThreatIntel is in Alert mode by default) + $azureFirewallPolicy = New-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname -Location $firewallPolicyLocation + + # Get the AzureFirewallPolicy + $getazureFirewallPolicy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname + + + # Create AzureFirewall (with no rules, ThreatIntel is in Alert mode by default) + $azureFirewall = New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName -FirewallPolicyId $azureFirewallPolicyId + + # Get AzureFirewall + $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname + + #verification + Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $azureFirewallName $getAzureFirewall.Name + Assert-NotNull $getAzureFirewall.Location + Assert-AreEqual (Normalize-Location $location) $getAzureFirewall.Location + Assert-NotNull $getAzureFirewall.Etag + Assert-AreEqual "Alert" $getAzureFirewall.ThreatIntelMode + Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count + Assert-NotNull $getAzureFirewall.IpConfigurations[0].Subnet.Id + Assert-NotNull $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id + Assert-NotNull $getAzureFirewall.IpConfigurations[0].PrivateIpAddress + Assert-AreEqual $subnet.Id $getAzureFirewall.IpConfigurations[0].Subnet.Id + Assert-AreEqual $publicip.Id $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id + Assert-AreEqual 0 @($getAzureFirewall.ApplicationRuleCollections).Count + Assert-AreEqual 0 @($getAzureFirewall.NatRuleCollections).Count + Assert-AreEqual 0 @($getAzureFirewall.NetworkRuleCollections).Count + Assert-AreEqual $azureFirewallPolicyId $getAzureFirewall.FirewallPolicy.Id + + # Update ThreatIntel mode + $azureFirewall.ThreatIntelMode = "Deny" + + # Set AzureFirewall + Set-AzFirewall -AzureFirewall $azureFirewall + + # Get AzureFirewall + $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgName + $azureFirewallIpConfiguration = $getAzureFirewall.IpConfigurations + + #verification + Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $azureFirewallName $getAzureFirewall.Name + Assert-NotNull $getAzureFirewall.Location + Assert-AreEqual $location $getAzureFirewall.Location + Assert-NotNull $getAzureFirewall.Etag + Assert-AreEqual "Deny" $getAzureFirewall.ThreatIntelMode + + Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count + Assert-NotNull $azureFirewallIpConfiguration[0].Subnet.Id + Assert-NotNull $azureFirewallIpConfiguration[0].PublicIpAddress.Id + Assert-NotNull $azureFirewallIpConfiguration[0].PrivateIpAddress + + # Delete AzureFirewall + $delete = Remove-AzFirewall -ResourceGroupName $rgname -name $azureFirewallName -PassThru -Force + Assert-AreEqual true $delete + + # Delete VirtualNetwork + $delete = Remove-AzVirtualNetwork -ResourceGroupName $rgname -name $vnetName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzFirewall -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally { + # Cleanup + Clean-ResourceGroup $rgname + } +} + diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index fbd092b96b1d..5aa7720c3d77 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,8 @@ ---> ## Upcoming Release +* Support Azure Firewall Policy on VNet Firewalls + - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls ## Version 2.2.0 * Update references in .psd1 to use relative path diff --git a/src/Network/Network/help/New-AzFirewall.md b/src/Network/Network/help/New-AzFirewall.md index 8d283ab04a1d..236f3f907514 100644 --- a/src/Network/Network/help/New-AzFirewall.md +++ b/src/Network/Network/help/New-AzFirewall.md @@ -183,6 +183,20 @@ New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -Virt This example creates a Firewall that treats "99.99.99.0/24" and "66.66.0.0/16" as private ip ranges and won't snat traffic to those addresses + +### 12: Create a Firewall with Firewall Policy attached to a virtual network +``` +$rgName = "resourceGroupName" +$vnet = Get-AzVirtualNetwork -ResourceGroupName $rgName -Name "vnet" +$pip = Get-AzPublicIpAddress -ResourceGroupName $rgName -Name "publicIpName" +$fp = Get-AzFirewallPolicy -ResourceGroupName $rgName -Name "fp" +New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -VirtualNetwork $vnet -PublicIpAddress $pip -FirewallPolicyId $fp +``` + +This example creates a Firewall attached to virtual network "vnet" in the same resource group as the firewall. +The rules and threat intelligence that will be applied to the firewall will be taken from the firewall policy + + ## PARAMETERS ### -ApplicationRuleCollection From 31f62d37621198f76d480d60e726a955616a15b8 Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 13:39:51 -0800 Subject: [PATCH 06/44] cleanup --- .../ScenarioTests/AzureFirewallTests.ps1 | 542 +----------------- 1 file changed, 5 insertions(+), 537 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 index cbbab162b65e..b261b36e9922 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 @@ -21,7 +21,7 @@ function Test-AzureFirewallCRUD { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus" + $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -486,7 +486,7 @@ function Test-AzureFirewallCRUDWithZones { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus" + $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -848,7 +848,7 @@ function Test-AzureFirewallPIPAndVNETObjectTypeParams { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus" + $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -1002,7 +1002,7 @@ function Test-AzureFirewallAllocateAndDeallocate { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus" + $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -1165,7 +1165,7 @@ function Test-AzureFirewallThreatIntelWhitelistCRUD { $rgname = Get-ResourceGroupName $azureFirewallName = Get-ResourceName $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus" + $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" $vnetName = Get-ResourceName $subnetName = "AzureFirewallSubnet" @@ -1253,538 +1253,6 @@ function Test-AzureFirewallPrivateRangeCRUD { } } -# ---------------------------------------------------------------------------------- -# -# 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. -# ---------------------------------------------------------------------------------- - -<# -.SYNOPSIS -Tests AzureFirewallCRUD. -#> -function Test-AzureFirewallCRUD { - # Setup - $rgname = Get-ResourceGroupName - $azureFirewallName = Get-ResourceName - $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $location = Get-ProviderLocation $resourceTypeParent "eastus" - - $vnetName = Get-ResourceName - $subnetName = "AzureFirewallSubnet" - $publicIpName = Get-ResourceName - - # AzureFirewallApplicationRuleCollection - $appRcName = "appRc" - $appRcPriority = 100 - $appRcActionType = "Allow" - - # AzureFirewallApplicationRuleCollection 2 - $appRc2Name = "appRc2" - $appRc2Priority = 101 - $appRc2ActionType = "Deny" - - # AzureFirewallApplicationRule 1 - $appRule1Name = "appRule" - $appRule1Desc = "desc1" - $appRule1Fqdn1 = "*google.com" - $appRule1Fqdn2 = "*microsoft.com" - $appRule1Protocol1 = "http:80" - $appRule1Port1 = 80 - $appRule1ProtocolType1 = "http" - $appRule1Protocol2 = "https:443" - $appRule1Port2 = 443 - $appRule1ProtocolType2 = "https" - $appRule1SourceAddress1 = "10.0.0.0" - - # AzureFirewallApplicationRule 2 - $appRule2Name = "appRule2" - $appRule2Fqdn1 = "*bing.com" - $appRule2Protocol1 = "http:8080" - $appRule2Port1 = 8080 - $appRule2ProtocolType1 = "http" - - # AzureFirewallApplicationRule 3 - $appRule3Name = "appRule3" - $appRule3Fqdn1 = "sql1.database.windows.net" - $appRule3Protocol1 = "mssql:1433" - $appRule3Port1 = 1433 - $appRule3ProtocolType1 = "mssql" - - # AzureFirewallNetworkRuleCollection - $networkRcName = "networkRc" - $networkRcPriority = 200 - $networkRcActionType = "Deny" - - # AzureFirewallNetworkRule 1 - $networkRule1Name = "networkRule" - $networkRule1Desc = "desc1" - $networkRule1SourceAddress1 = "10.0.0.0" - $networkRule1SourceAddress2 = "111.1.0.0/24" - $networkRule1DestinationAddress1 = "*" - $networkRule1Protocol1 = "UDP" - $networkRule1Protocol2 = "TCP" - $networkRule1Protocol3 = "ICMP" - $networkRule1DestinationPort1 = "90" - - # AzureFirewallNetworkRule 2 - $networkRule2Name = "networkRule2" - $networkRule2Desc = "desc2" - $networkRule2SourceAddress1 = "10.0.0.0" - $networkRule2SourceAddress2 = "111.1.0.0/24" - $networkRule2DestinationFqdn1 = "www.bing.com" - $networkRule2Protocol1 = "UDP" - $networkRule2Protocol2 = "TCP" - $networkRule2Protocol3 = "ICMP" - $networkRule2DestinationPort1 = "80" - - # AzureFirewallNatRuleCollection - $natRcName = "natRc" - $natRcPriority = 200 - - # AzureFirewallNatRule 1 - $natRule1Name = "natRule" - $natRule1Desc = "desc1" - $natRule1SourceAddress1 = "10.0.0.0" - $natRule1SourceAddress2 = "111.1.0.0/24" - $natRule1DestinationAddress1 = "1.2.3.4" - $natRule1Protocol1 = "UDP" - $natRule1Protocol2 = "TCP" - $natRule1DestinationPort1 = "90" - $natRule1TranslatedAddress = "10.1.2.3" - $natRule1TranslatedPort = "91" - - # AzureFirewallNatRule 2 - $natRule2Name = "natRule2" - $natRule2Desc = "desc2" - $natRule2SourceAddress1 = "10.0.0.0" - $natRule2SourceAddress2 = "111.1.0.0/24" - $natRule2Protocol1 = "UDP" - $natRule2Protocol2 = "TCP" - $natRule2DestinationPort1 = "95" - $natRule2TranslatedFqdn = "server1.internal.com" - $natRule2TranslatedPort = "96" - - try { - # Create the resource group - $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } - - # Create the Virtual Network - $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 - $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet - # Get full subnet details - $subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $vnet -Name $subnetName - - # Create public ip - $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -Sku Standard - - # Create AzureFirewall (with no rules, ThreatIntel is in Alert mode by default) - $azureFirewall = New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName - - # Get AzureFirewall - $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname - - #verification - Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName - Assert-AreEqual $azureFirewallName $getAzureFirewall.Name - Assert-NotNull $getAzureFirewall.Location - Assert-AreEqual (Normalize-Location $location) $getAzureFirewall.Location - Assert-NotNull $getAzureFirewall.Etag - Assert-AreEqual "Alert" $getAzureFirewall.ThreatIntelMode - Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count - Assert-NotNull $getAzureFirewall.IpConfigurations[0].Subnet.Id - Assert-NotNull $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id - Assert-NotNull $getAzureFirewall.IpConfigurations[0].PrivateIpAddress - Assert-AreEqual $subnet.Id $getAzureFirewall.IpConfigurations[0].Subnet.Id - Assert-AreEqual $publicip.Id $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id - Assert-AreEqual 0 @($getAzureFirewall.ApplicationRuleCollections).Count - Assert-AreEqual 0 @($getAzureFirewall.NatRuleCollections).Count - Assert-AreEqual 0 @($getAzureFirewall.NetworkRuleCollections).Count - - # list all Azure Firewalls in the resource group - $list = Get-AzFirewall -ResourceGroupName $rgname - Assert-AreEqual 1 @($list).Count - Assert-AreEqual $list[0].ResourceGroupName $getAzureFirewall.ResourceGroupName - Assert-AreEqual $list[0].Name $getAzureFirewall.Name - Assert-AreEqual $list[0].Location $getAzureFirewall.Location - Assert-AreEqual $list[0].Etag $getAzureFirewall.Etag - Assert-AreEqual @($list[0].IpConfigurations).Count @($getAzureFirewall.IpConfigurations).Count - Assert-AreEqual @($list[0].IpConfigurations)[0].Subnet.Id $getAzureFirewall.IpConfigurations[0].Subnet.Id - Assert-AreEqual @($list[0].IpConfigurations)[0].PublicIpAddress.Id $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id - Assert-AreEqual @($list[0].IpConfigurations)[0].PrivateIpAddress $getAzureFirewall.IpConfigurations[0].PrivateIpAddress - Assert-AreEqual @($list[0].ApplicationRuleCollections).Count @($getAzureFirewall.ApplicationRuleCollections).Count - Assert-AreEqual @($list[0].NatRuleCollections).Count @($getAzureFirewall.NatRuleCollections).Count - Assert-AreEqual @($list[0].NetworkRuleCollections).Count @($getAzureFirewall.NetworkRuleCollections).Count - - # list all Azure Firewalls under subscription - $listAll = Get-AzureRmFirewall - Assert-NotNull $listAll - - $listAll = Get-AzureRmFirewall -Name "*" - Assert-NotNull $listAll - - $listAll = Get-AzureRmFirewall -ResourceGroupName "*" - Assert-NotNull $listAll - - $listAll = Get-AzureRmFirewall -ResourceGroupName "*" -Name "*" - Assert-NotNull $listAll - - # Create Application Rules - $appRule = New-AzFirewallApplicationRule -Name $appRule1Name -Description $appRule1Desc -Protocol $appRule1Protocol1, $appRule1Protocol2 -TargetFqdn $appRule1Fqdn1, $appRule1Fqdn2 -SourceAddress $appRule1SourceAddress1 - - $appRule2 = New-AzFirewallApplicationRule -Name $appRule2Name -Protocol $appRule2Protocol1 -TargetFqdn $appRule2Fqdn1 - - $appRule3 = New-AzFirewallApplicationRule -Name $appRule3Name -Protocol $appRule3Protocol1 -TargetFqdn $appRule3Fqdn1 - - # Create Application Rule Collection with 1 rule - $appRc = New-AzFirewallApplicationRuleCollection -Name $appRcName -Priority $appRcPriority -Rule $appRule -ActionType $appRcActionType - - # Add a rule to the rule collection using AddRule method - $appRc.AddRule($appRule2) - $appRc.AddRule($appRule3) - - # Create a second Application Rule Collection with 1 rule - $appRc2 = New-AzFirewallApplicationRuleCollection -Name $appRc2Name -Priority $appRc2Priority -Rule $appRule -ActionType $appRc2ActionType - - # Create Network Rule - $networkRule = New-AzFirewallNetworkRule -Name $networkRule1Name -Description $networkRule1Desc -Protocol $networkRule1Protocol1, $networkRule1Protocol2 -SourceAddress $networkRule1SourceAddress1, $networkRule1SourceAddress2 -DestinationAddress $networkRule1DestinationAddress1 -DestinationPort $networkRule1DestinationPort1 - $networkRule.AddProtocol($networkRule1Protocol3) - - # Test handling of incorrect values - Assert-ThrowsContains { $networkRule.AddProtocol() } "Cannot find an overload" - Assert-ThrowsContains { $networkRule.AddProtocol($null) } "A protocol must be provided" - Assert-ThrowsContains { $networkRule.AddProtocol("ABCD") } "Invalid protocol" - - # Create Network Rule Collection - $netRc = New-AzFirewallNetworkRuleCollection -Name $networkRcName -Priority $networkRcPriority -Rule $networkRule -ActionType $networkRcActionType - - # Create Second Network Rule - $networkRule2 = New-AzFirewallNetworkRule -Name $networkRule2Name -Description $networkRule2Desc -Protocol $networkRule2Protocol1, $networkRule2Protocol2 -SourceAddress $networkRule2SourceAddress1, $networkRule2SourceAddress2 -DestinationFqdn $networkRule2DestinationFqdn1 -DestinationPort $networkRule2DestinationPort1 - $networkRule2.AddProtocol($networkRule2Protocol3) - - # Add this second Network Rule to the rule collection - $netRc.AddRule($networkRule2) - - # Create a NAT rule - $natRule = New-AzFirewallNatRule -Name $natRule1Name -Description $natRule1Desc -Protocol $natRule1Protocol1 -SourceAddress $natRule1SourceAddress1, $natRule1SourceAddress2 -DestinationAddress $publicip.IpAddress -DestinationPort $natRule1DestinationPort1 -TranslatedAddress $natRule1TranslatedAddress -TranslatedPort $natRule1TranslatedPort - $natRule.AddProtocol($natRule1Protocol2) - - # Test handling of incorrect values - Assert-ThrowsContains { $natRule.AddProtocol() } "Cannot find an overload" - Assert-ThrowsContains { $natRule.AddProtocol($null) } "A protocol must be provided" - Assert-ThrowsContains { $natRule.AddProtocol("ABCD") } "Invalid protocol" - # Test handling of ICMP protocol - Assert-ThrowsContains { - New-AzFirewallNatRule -Name $natRule1Name -Protocol $natRule1Protocol1, "ICMP" -SourceAddress $natRule1SourceAddress1 -DestinationAddress $natRule1DestinationAddress1 -DestinationPort $natRule1DestinationPort1 -TranslatedAddress $natRule1TranslatedAddress -TranslatedPort $natRule1TranslatedPort - } "The argument `"ICMP`" does not belong to the set" - Assert-ThrowsContains { $natRule.AddProtocol("ICMP") } "Invalid protocol" - - # Create second NAT rule - $natRule2 = New-AzFirewallNatRule -Name $natRule2Name -Description $natRule2Desc -Protocol $natRule2Protocol1 -SourceAddress $natRule2SourceAddress1, $natRule2SourceAddress2 -DestinationAddress $publicip.IpAddress -DestinationPort $natRule2DestinationPort1 -TranslatedFqdn $natRule2TranslatedFqdn -TranslatedPort $natRule2TranslatedPort - $natRule2.AddProtocol($natRule2Protocol2) - - # Create a NAT Rule Collection - $natRc = New-AzFirewallNatRuleCollection -Name $natRcName -Priority $natRcPriority -Rule $natRule - - # Add second NAT Rule to rule Collection - $natRc.AddRule($natRule2) - - # Add ApplicationRuleCollections to the Firewall using method AddApplicationRuleCollection - $azureFirewall.AddApplicationRuleCollection($appRc) - $azureFirewall.AddApplicationRuleCollection($appRc2) - - # Add NatRuleCollections to the Firewall using method AddNatRuleCollection - $azureFirewall.AddNatRuleCollection($natRc) - - # Add NetworkRuleCollections to the Firewall using method AddNetworkRuleCollection - $azureFirewall.AddNetworkRuleCollection($netRc) - - # Update ThreatIntel mode - $azureFirewall.ThreatIntelMode = "Deny" - - # Set AzureFirewall - Set-AzFirewall -AzureFirewall $azureFirewall - - # Get AzureFirewall - $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgName - $azureFirewallIpConfiguration = $getAzureFirewall.IpConfigurations - - #verification - Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName - Assert-AreEqual $azureFirewallName $getAzureFirewall.Name - Assert-NotNull $getAzureFirewall.Location - Assert-AreEqual $location $getAzureFirewall.Location - Assert-NotNull $getAzureFirewall.Etag - Assert-AreEqual "Deny" $getAzureFirewall.ThreatIntelMode - - Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count - Assert-NotNull $azureFirewallIpConfiguration[0].Subnet.Id - Assert-NotNull $azureFirewallIpConfiguration[0].PublicIpAddress.Id - Assert-NotNull $azureFirewallIpConfiguration[0].PrivateIpAddress - - # Check rule collections - Assert-AreEqual 2 @($getAzureFirewall.ApplicationRuleCollections).Count - Assert-AreEqual 3 @($getAzureFirewall.ApplicationRuleCollections[0].Rules).Count - Assert-AreEqual 1 @($getAzureFirewall.ApplicationRuleCollections[1].Rules).Count - - Assert-AreEqual 1 @($getAzureFirewall.NatRuleCollections).Count - Assert-AreEqual 2 @($getAzureFirewall.NatRuleCollections[0].Rules).Count - - Assert-AreEqual 1 @($getAzureFirewall.NetworkRuleCollections).Count - Assert-AreEqual 2 @($getAzureFirewall.NetworkRuleCollections[0].Rules).Count - - $appRc = $getAzureFirewall.GetApplicationRuleCollectionByName($appRcName) - $appRule = $appRc.GetRuleByName($appRule1Name) - $appRule2 = $appRc.GetRuleByName($appRule2Name) - $appRule3 = $appRc.GetRuleByName($appRule3Name) - - # Verify application rule collection 1 - Assert-AreEqual $appRcName $appRc.Name - Assert-AreEqual $appRcPriority $appRc.Priority - Assert-AreEqual $appRcActionType $appRc.Action.Type - - # Verify application rule 1 - Assert-AreEqual $appRule1Name $appRule.Name - Assert-AreEqual $appRule1Desc $appRule.Description - - Assert-AreEqual 1 $appRule.SourceAddresses.Count - Assert-AreEqual $appRule1SourceAddress1 $appRule.SourceAddresses[0] - - Assert-AreEqual 2 $appRule.Protocols.Count - Assert-AreEqual $appRule1ProtocolType1 $appRule.Protocols[0].ProtocolType - Assert-AreEqual $appRule1ProtocolType2 $appRule.Protocols[1].ProtocolType - Assert-AreEqual $appRule1Port1 $appRule.Protocols[0].Port - Assert-AreEqual $appRule1Port2 $appRule.Protocols[1].Port - - Assert-AreEqual 2 $appRule.TargetFqdns.Count - Assert-AreEqual $appRule1Fqdn1 $appRule.TargetFqdns[0] - Assert-AreEqual $appRule1Fqdn2 $appRule.TargetFqdns[1] - - # Verify application rule 2 - Assert-AreEqual $appRule2Name $appRule2.Name - Assert-Null $appRule2.Description - - Assert-AreEqual 0 $appRule2.SourceAddresses.Count - - Assert-AreEqual 1 $appRule2.Protocols.Count - Assert-AreEqual $appRule2ProtocolType1 $appRule2.Protocols[0].ProtocolType - Assert-AreEqual $appRule2Port1 $appRule2.Protocols[0].Port - - Assert-AreEqual 1 $appRule2.TargetFqdns.Count - Assert-AreEqual $appRule2Fqdn1 $appRule2.TargetFqdns[0] - - # Verify application rule 3 - Assert-AreEqual $appRule3Name $appRule3.Name - Assert-Null $appRule3.Description - - Assert-AreEqual 0 $appRule3.SourceAddresses.Count - - Assert-AreEqual 1 $appRule3.Protocols.Count - Assert-AreEqual $appRule3ProtocolType1 $appRule3.Protocols[0].ProtocolType - Assert-AreEqual $appRule3Port1 $appRule3.Protocols[0].Port - - Assert-AreEqual 1 $appRule3.TargetFqdns.Count - Assert-AreEqual $appRule3Fqdn1 $appRule3.TargetFqdns[0] - - # Verify application rule collection 2 - $appRc2 = $getAzureFirewall.GetApplicationRuleCollectionByName($appRc2Name) - - Assert-AreEqual $appRc2Name $appRc2.Name - Assert-AreEqual $appRc2Priority $appRc2.Priority - Assert-AreEqual $appRc2ActionType $appRc2.Action.Type - - # Verify application rule - $appRule = $appRc2.GetRuleByName($appRule1Name) - - Assert-AreEqual $appRule1Name $appRule.Name - Assert-AreEqual $appRule1Desc $appRule.Description - - Assert-AreEqual 1 $appRule.SourceAddresses.Count - Assert-AreEqual $appRule1SourceAddress1 $appRule.SourceAddresses[0] - - Assert-AreEqual 2 $appRule.Protocols.Count - Assert-AreEqual $appRule1ProtocolType1 $appRule.Protocols[0].ProtocolType - Assert-AreEqual $appRule1ProtocolType2 $appRule.Protocols[1].ProtocolType - Assert-AreEqual $appRule1Port1 $appRule.Protocols[0].Port - Assert-AreEqual $appRule1Port2 $appRule.Protocols[1].Port - - Assert-AreEqual 2 $appRule.TargetFqdns.Count - Assert-AreEqual $appRule1Fqdn1 $appRule.TargetFqdns[0] - Assert-AreEqual $appRule1Fqdn2 $appRule.TargetFqdns[1] - - # Verify NAT rule collection and NAT rules - $natRc = $getAzureFirewall.GetNatRuleCollectionByName($natRcName) - $natRule = $natRc.GetRuleByName($natRule1Name) - - Assert-AreEqual $natRcName $natRc.Name - Assert-AreEqual $natRcPriority $natRc.Priority - - Assert-AreEqual $natRule1Name $natRule.Name - Assert-AreEqual $natRule1Desc $natRule.Description - - Assert-AreEqual 2 $natRule.SourceAddresses.Count - Assert-AreEqual $natRule1SourceAddress1 $natRule.SourceAddresses[0] - Assert-AreEqual $natRule1SourceAddress2 $natRule.SourceAddresses[1] - - Assert-AreEqual 1 $natRule.DestinationAddresses.Count - Assert-AreEqual $publicip.IpAddress $natRule.DestinationAddresses[0] - - Assert-AreEqual 2 $natRule.Protocols.Count - Assert-AreEqual $natRule1Protocol1 $natRule.Protocols[0] - Assert-AreEqual $natRule1Protocol2 $natRule.Protocols[1] - - Assert-AreEqual 1 $natRule.DestinationPorts.Count - Assert-AreEqual $natRule1DestinationPort1 $natRule.DestinationPorts[0] - - Assert-AreEqual $natRule1TranslatedAddress $natRule.TranslatedAddress - Assert-AreEqual $natRule1TranslatedPort $natRule.TranslatedPort - - $natRule2 = $natRc.GetRuleByName($natRule2Name) - - Assert-AreEqual $natRule2Name $natRule2.Name - Assert-AreEqual $natRule2Desc $natRule2.Description - - Assert-AreEqual 2 $natRule2.SourceAddresses.Count - Assert-AreEqual $natRule2SourceAddress1 $natRule2.SourceAddresses[0] - Assert-AreEqual $natRule2SourceAddress2 $natRule2.SourceAddresses[1] - - Assert-AreEqual 1 $natRule2.DestinationAddresses.Count - Assert-AreEqual $publicip.IpAddress $natRule2.DestinationAddresses[0] - - Assert-AreEqual 2 $natRule2.Protocols.Count - Assert-AreEqual $natRule2Protocol1 $natRule2.Protocols[0] - Assert-AreEqual $natRule2Protocol2 $natRule2.Protocols[1] - - Assert-AreEqual 1 $natRule2.DestinationPorts.Count - Assert-AreEqual $natRule2DestinationPort1 $natRule2.DestinationPorts[0] - - Assert-AreEqual $natRule2TranslatedFqdn $natRule2.TranslatedFqdn - Assert-AreEqual $natRule2TranslatedPort $natRule2.TranslatedPort - - # Verify network rule collection and network rules - $networkRc = $getAzureFirewall.GetNetworkRuleCollectionByName($networkRcName) - $networkRule = $networkRc.GetRuleByName($networkRule1Name) - - Assert-AreEqual $networkRcName $networkRc.Name - Assert-AreEqual $networkRcPriority $networkRc.Priority - Assert-AreEqual $networkRcActionType $networkRc.Action.Type - - Assert-AreEqual $networkRule1Name $networkRule.Name - Assert-AreEqual $networkRule1Desc $networkRule.Description - - Assert-AreEqual 2 $networkRule.SourceAddresses.Count - Assert-AreEqual $networkRule1SourceAddress1 $networkRule.SourceAddresses[0] - Assert-AreEqual $networkRule1SourceAddress2 $networkRule.SourceAddresses[1] - - Assert-AreEqual 1 $networkRule.DestinationAddresses.Count - Assert-AreEqual $networkRule1DestinationAddress1 $networkRule.DestinationAddresses[0] - - Assert-AreEqual 3 $networkRule.Protocols.Count - Assert-AreEqual $networkRule1Protocol1 $networkRule.Protocols[0] - Assert-AreEqual $networkRule1Protocol2 $networkRule.Protocols[1] - Assert-AreEqual $networkRule1Protocol3 $networkRule.Protocols[2] - - Assert-AreEqual 1 $networkRule.DestinationPorts.Count - Assert-AreEqual $networkRule1DestinationPort1 $networkRule.DestinationPorts[0] - - $networkRule2 = $networkRc.GetRuleByName($networkRule2Name) - - Assert-AreEqual $networkRule2Name $networkRule2.Name - Assert-AreEqual $networkRule2Desc $networkRule2.Description - - Assert-AreEqual 2 $networkRule2.SourceAddresses.Count - Assert-AreEqual $networkRule2SourceAddress1 $networkRule2.SourceAddresses[0] - Assert-AreEqual $networkRule2SourceAddress2 $networkRule2.SourceAddresses[1] - - Assert-AreEqual 1 $networkRule2.DestinationFqdns.Count - Assert-AreEqual $networkRule2DestinationFqdn1 $networkRule2.DestinationFqdns[0] - - Assert-AreEqual 3 $networkRule2.Protocols.Count - Assert-AreEqual $networkRule2Protocol1 $networkRule2.Protocols[0] - Assert-AreEqual $networkRule2Protocol2 $networkRule2.Protocols[1] - Assert-AreEqual $networkRule2Protocol3 $networkRule2.Protocols[2] - - Assert-AreEqual 1 $networkRule2.DestinationPorts.Count - Assert-AreEqual $networkRule2DestinationPort1 $networkRule2.DestinationPorts[0] - - # Delete AzureFirewall - $delete = Remove-AzFirewall -ResourceGroupName $rgname -name $azureFirewallName -PassThru -Force - Assert-AreEqual true $delete - - # Delete VirtualNetwork - $delete = Remove-AzVirtualNetwork -ResourceGroupName $rgname -name $vnetName -PassThru -Force - Assert-AreEqual true $delete - - $list = Get-AzFirewall -ResourceGroupName $rgname - Assert-AreEqual 0 @($list).Count - } - finally { - # Cleanup - Clean-ResourceGroup $rgname - } -} - -<# -.SYNOPSIS -Tests AzureFirewall Set and Remove IpConfiguration -#> -function Test-AzureFirewallVirtualHubCRUD { - # Setup - $rgname = Get-ResourceGroupName - $azureFirewallName = Get-ResourceName - $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $policyLocation = "westcentralus" - $location = Get-ProviderLocation $resourceTypeParent - $azureFirewallPolicyName = Get-ResourceName - $sku = "AZFW_Hub" - $tier = "Standard" - - try { - # Create the resource group - $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } - - # Create AzureFirewallPolicy (with no rules, ThreatIntel is in Alert mode by default) - $azureFirewallPolicy = New-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname -Location $policyLocation - - # Get the AzureFirewallPolicy - $getazureFirewallPolicy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname - - - Assert-NotNull $azureFirewallPolicy - Assert-NotNull $getazureFirewallPolicy.Id - - $azureFirewallPolicyId = $getazureFirewallPolicy.Id - - New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -Sku $sku -FirewallPolicyId $azureFirewallPolicyId - - # Get AzureFirewall - $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname - - #verification - Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName - Assert-AreEqual $azureFirewallName $getAzureFirewall.Name - Assert-NotNull $getAzureFirewall.Location - Assert-AreEqual (Normalize-Location $location) $getAzureFirewall.Location - Assert-NotNull $sku $getAzureFirewall.Sku - Assert-AreEqual $sku $getAzureFirewall.Sku.Name - Assert-AreEqual $tier $getAzureFirewall.Sku.Tier - Assert-NotNull $getAzureFirewall.FirewallPolicy - Assert-AreEqual $azureFirewallPolicyId $getAzureFirewall.FirewallPolicy.Id - } - finally { - # Cleanup - Clean-ResourceGroup $rgname - } -} - <# .SYNOPSIS Tests AzureFirewallCRUD. From 31fb3ee50f823864bea63c5259adbea43d72e9ea Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 14:17:00 -0800 Subject: [PATCH 07/44] test fix --- src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 index b261b36e9922..365c85a7d4b3 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 @@ -1290,8 +1290,8 @@ function Test-AzureFirewallWithFirewallPolicyCRUD { # Get the AzureFirewallPolicy $getazureFirewallPolicy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname + $azureFirewallPolicyId = $getazureFirewallPolicy.Id - # Create AzureFirewall (with no rules, ThreatIntel is in Alert mode by default) $azureFirewall = New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName -FirewallPolicyId $azureFirewallPolicyId # Get AzureFirewall From ac104f4dc5dec810537870b7041c4424d8853137 Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 14:25:07 -0800 Subject: [PATCH 08/44] clean up --- .../Network.Test/ScenarioTests/AzureFirewallTests.cs | 9 +++++---- src/Network/Network/ChangeLog.md | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs index bc3931b99b06..02bd70b65391 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs @@ -85,16 +85,17 @@ public void TestAzureFirewallPrivateRangeCRUD() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] - public void TestAzureFirewallWithFirewallPolicyCRUD() + public void TestAzureFirewallCRUDwithManagementIpConfig() { - TestRunner.RunTestScript("Test-AzureFirewallWithFirewallPolicyCRUD"); + TestRunner.RunTestScript("Test-AzureFirewallCRUDwithManagementIpConfig"); } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] - public void TestAzureFirewallCRUDwithManagementIpConfig() + public void TestAzureFirewallWithFirewallPolicyCRUD() { - TestRunner.RunTestScript("Test-AzureFirewallCRUDwithManagementIpConfig"); + TestRunner.RunTestScript("Test-AzureFirewallWithFirewallPolicyCRUD"); } } diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 5a5591cef566..6eab6f3105d1 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -23,6 +23,7 @@ * Added Packet Capture example for capture all inner and outer packets in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. * Support Azure Firewall Policy on VNet Firewalls - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls + ## Version 2.3.0 * New example added to Set-AzNetworkWatcherConfigFlowLog.md to demonstrate Traffic Analytics disable scenario. * Add support for assigning management IP configuration to Azure Firewall - a dedicated subnet and Public IP that the firewall will use for its management traffic From 436c4e197415fb4b9785f86a8799c7d2dc085bc8 Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 15:55:42 -0800 Subject: [PATCH 09/44] removing the test --- .../ScenarioTests/AzureFirewallTests.cs | 8 -- .../ScenarioTests/AzureFirewallTests.ps1 | 102 ------------------ 2 files changed, 110 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs index 02bd70b65391..cc71c01b1285 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs @@ -89,14 +89,6 @@ public void TestAzureFirewallCRUDwithManagementIpConfig() { TestRunner.RunTestScript("Test-AzureFirewallCRUDwithManagementIpConfig"); } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] - public void TestAzureFirewallWithFirewallPolicyCRUD() - { - TestRunner.RunTestScript("Test-AzureFirewallWithFirewallPolicyCRUD"); - } } } diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 index deae32ac5beb..66ad0d3a9914 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 @@ -1368,105 +1368,3 @@ function Test-AzureFirewallPrivateRangeCRUD { } } -<# -.SYNOPSIS -Tests AzureFirewallCRUD. -#> -function Test-AzureFirewallWithFirewallPolicyCRUD { - # Setup - $rgname = Get-ResourceGroupName - $azureFirewallName = Get-ResourceName - $resourceTypeParent = "Microsoft.Network/AzureFirewalls" - $firewallPolicyLocation = Get-ProviderLocation $resourceTypeParent "eastus" - $location = Get-ProviderLocation $resourceTypeParent "centraluseuap" - - $vnetName = Get-ResourceName - $subnetName = "AzureFirewallSubnet" - $publicIpName = Get-ResourceName - $azureFirewallPolicyName = Get-ResourceName - - try { - # Create the resource group - $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } - - # Create the Virtual Network - $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 - $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet - # Get full subnet details - $subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $vnet -Name $subnetName - - # Create public ip - $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -Sku Standard - - - # Create AzureFirewallPolicy (with no rules, ThreatIntel is in Alert mode by default) - $azureFirewallPolicy = New-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname -Location $firewallPolicyLocation - - # Get the AzureFirewallPolicy - $getazureFirewallPolicy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname - - $azureFirewallPolicyId = $getazureFirewallPolicy.Id - - $azureFirewall = New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName -FirewallPolicyId $azureFirewallPolicyId - - # Get AzureFirewall - $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname - - #verification - Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName - Assert-AreEqual $azureFirewallName $getAzureFirewall.Name - Assert-NotNull $getAzureFirewall.Location - Assert-AreEqual (Normalize-Location $location) $getAzureFirewall.Location - Assert-NotNull $getAzureFirewall.Etag - Assert-AreEqual "Alert" $getAzureFirewall.ThreatIntelMode - Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count - Assert-NotNull $getAzureFirewall.IpConfigurations[0].Subnet.Id - Assert-NotNull $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id - Assert-NotNull $getAzureFirewall.IpConfigurations[0].PrivateIpAddress - Assert-AreEqual $subnet.Id $getAzureFirewall.IpConfigurations[0].Subnet.Id - Assert-AreEqual $publicip.Id $getAzureFirewall.IpConfigurations[0].PublicIpAddress.Id - Assert-AreEqual 0 @($getAzureFirewall.ApplicationRuleCollections).Count - Assert-AreEqual 0 @($getAzureFirewall.NatRuleCollections).Count - Assert-AreEqual 0 @($getAzureFirewall.NetworkRuleCollections).Count - Assert-AreEqual $azureFirewallPolicyId $getAzureFirewall.FirewallPolicy.Id - - # Update ThreatIntel mode - $azureFirewall.ThreatIntelMode = "Deny" - - # Set AzureFirewall - Set-AzFirewall -AzureFirewall $azureFirewall - - # Get AzureFirewall - $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgName - $azureFirewallIpConfiguration = $getAzureFirewall.IpConfigurations - - #verification - Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName - Assert-AreEqual $azureFirewallName $getAzureFirewall.Name - Assert-NotNull $getAzureFirewall.Location - Assert-AreEqual $location $getAzureFirewall.Location - Assert-NotNull $getAzureFirewall.Etag - Assert-AreEqual "Deny" $getAzureFirewall.ThreatIntelMode - - Assert-AreEqual 1 @($getAzureFirewall.IpConfigurations).Count - Assert-NotNull $azureFirewallIpConfiguration[0].Subnet.Id - Assert-NotNull $azureFirewallIpConfiguration[0].PublicIpAddress.Id - Assert-NotNull $azureFirewallIpConfiguration[0].PrivateIpAddress - - # Delete AzureFirewall - $delete = Remove-AzFirewall -ResourceGroupName $rgname -name $azureFirewallName -PassThru -Force - Assert-AreEqual true $delete - - # Delete VirtualNetwork - $delete = Remove-AzVirtualNetwork -ResourceGroupName $rgname -name $vnetName -PassThru -Force - Assert-AreEqual true $delete - - $list = Get-AzFirewall -ResourceGroupName $rgname - Assert-AreEqual 0 @($list).Count - } - finally { - # Cleanup - Clean-ResourceGroup $rgname - } -} - From 48c06d4b21e6aecd6eba48ebc88f7b8141429295 Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 15:56:52 -0800 Subject: [PATCH 10/44] clean up --- src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs | 1 - src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs index cc71c01b1285..7cdd5fddb934 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs @@ -81,7 +81,6 @@ public void TestAzureFirewallPrivateRangeCRUD() { TestRunner.RunTestScript("Test-AzureFirewallPrivateRangeCRUD"); } - [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 index 66ad0d3a9914..7d340573c16f 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 @@ -1367,4 +1367,3 @@ function Test-AzureFirewallPrivateRangeCRUD { Clean-ResourceGroup $rgname } } - From c5234aa11f223fb50294bee1aac8ffd2a9e759d0 Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 16:35:04 -0800 Subject: [PATCH 11/44] vnet policy changes --- .../AzureFirewall/NewAzureFirewallCommand.cs | 48 +++++-------------- 1 file changed, 13 insertions(+), 35 deletions(-) diff --git a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs index 2701ad852c4a..d998363dc196 100644 --- a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs +++ b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs @@ -263,45 +263,23 @@ private PSAzureFirewall CreateAzureFirewall() } else { - - if (FirewallPolicyId != null && (this.ApplicationRuleCollection != null || this.NetworkRuleCollection != null || this.NatRuleCollection != null)) - { - throw new ArgumentException("Firewall Policy and Rule Collections cannot coexist"); - } - var sku = new PSAzureFirewallSku(); sku.Name = MNM.AzureFirewallSkuName.AZFWVNet; sku.Tier = MNM.AzureFirewallSkuTier.Standard; - if (FirewallPolicyId != null) - { - firewall = new PSAzureFirewall() - { - Name = this.Name, - ResourceGroupName = this.ResourceGroupName, - Location = this.Location, - FirewallPolicy = FirewallPolicyId != null ? new MNM.SubResource(FirewallPolicyId) : null, - ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, - ThreatIntelWhitelist = this.ThreatIntelWhitelist, - PrivateRange = this.PrivateRange, - Sku = sku - }; - } - else + firewall = new PSAzureFirewall() { - firewall = new PSAzureFirewall() - { - Name = this.Name, - ResourceGroupName = this.ResourceGroupName, - Location = this.Location, - ApplicationRuleCollections = this.ApplicationRuleCollection?.ToList(), - NatRuleCollections = this.NatRuleCollection?.ToList(), - NetworkRuleCollections = this.NetworkRuleCollection?.ToList(), - ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, - ThreatIntelWhitelist = this.ThreatIntelWhitelist, - PrivateRange = this.PrivateRange, - Sku = sku - }; - } + Name = this.Name, + ResourceGroupName = this.ResourceGroupName, + Location = this.Location, + FirewallPolicy = FirewallPolicyId != null ? new MNM.SubResource(FirewallPolicyId) : null, + ApplicationRuleCollections = this.ApplicationRuleCollection?.ToList(), + NatRuleCollections = this.NatRuleCollection?.ToList(), + NetworkRuleCollections = this.NetworkRuleCollection?.ToList(), + ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, + ThreatIntelWhitelist = this.ThreatIntelWhitelist, + PrivateRange = this.PrivateRange, + Sku = sku + }; if (this.Zone != null) From 7705e0f2f7206bdb794e9b3f530ea679812f3b20 Mon Sep 17 00:00:00 2001 From: "samankal@microsoft.com" Date: Sun, 2 Feb 2020 16:36:15 -0800 Subject: [PATCH 12/44] clean up --- src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs index d998363dc196..375e09ab9ca5 100644 --- a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs +++ b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs @@ -281,7 +281,6 @@ private PSAzureFirewall CreateAzureFirewall() Sku = sku }; - if (this.Zone != null) { firewall.Zones = this.Zone?.ToList(); From 6be6a8e4eb5ed659db7c258a796eb746cd497da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuan=20Yang=20=F0=9F=8D=80?= Date: Tue, 21 Jan 2020 17:52:23 -0800 Subject: [PATCH 13/44] Fix error message when server returns 202 --- .../CognitiveServicesAccountTests.cs | 8 + .../CognitiveServicesAccountTests.ps1 | 30 + .../TestAsyncAccountOperations.json | 633 ++++++++++++++++++ .../CognitiveServicesAccountBaseCmdlet.cs | 5 + 4 files changed, 676 insertions(+) create mode 100644 src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestAsyncAccountOperations.json diff --git a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs index 68362a734b25..892b277ebde8 100644 --- a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs +++ b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs @@ -84,6 +84,14 @@ public void TestGetAccounts() { TestController.NewInstance.RunPsTest(traceInterceptor, "Test-GetAzureCognitiveServiceAccount"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAsyncAccountOperations() + { + TestController.NewInstance.RunPsTest(traceInterceptor, "Test-AsyncAccountOperations"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestSetAccount() diff --git a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 index 2f3275c9f020..0ae6d9ea639f 100644 --- a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 +++ b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 @@ -114,6 +114,36 @@ function Test-NewAzureRmAllKindsOfCognitiveServicesAccounts } } + +<# +.SYNOPSIS +Test AsyncAccountOperations +#> +function Test-AsyncAccountOperations +{ + # Setup + $rgname = Get-CognitiveServicesManagementTestResourceName; + + try + { + # Test + $accountname = 'csa' + $rgname; + $skuname = 'S0'; + $accounttype = 'Personalizer'; + $loc = Get-Location -providerNamespace "Microsoft.CognitiveServices" -resourceType "accounts" -preferredLocation "West US 2"; + + New-AzResourceGroup -Name $rgname -Location $loc; + + $createdAccount = New-AzCognitiveServicesAccount -ResourceGroupName $rgname -Name $accountname -Type $accounttype -SkuName $skuname -Location $loc -Force; + Remove-AzCognitiveServicesAccount -ResourceGroupName $rgname -Name $accountname -Force; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Test Remove-AzCognitiveServicesAccount diff --git a/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestAsyncAccountOperations.json b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestAsyncAccountOperations.json new file mode 100644 index 000000000000..e914bff0a901 --- /dev/null +++ b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestAsyncAccountOperations.json @@ -0,0 +1,633 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.CognitiveServices?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd0f0258-8a3f-48d2-adc1-eb294c32a4a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c54ad80a-3dfc-408b-bbc4-6647dbf54f9b" + ], + "x-ms-correlation-request-id": [ + "c54ad80a-3dfc-408b-bbc4-6647dbf54f9b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032612Z:c54ad80a-3dfc-408b-bbc4-6647dbf54f9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3404" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg182?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTgyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf2e6afc-2040-42c3-a61f-2426d708c9f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "058eccd5-723b-4287-b5bf-2604b161cc12" + ], + "x-ms-correlation-request-id": [ + "058eccd5-723b-4287-b5bf-2604b161cc12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032613Z:058eccd5-723b-4287-b5bf-2604b161cc12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:13 GMT" + ], + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg182\",\r\n \"name\": \"pstestrg182\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg182/providers/Microsoft.CognitiveServices/accounts/csapstestrg182?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxODI/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Personalizer\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af22f6e-2123-4e9c-8763-ef6c122e6b5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "115" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"01002743-0000-0800-0000-5e1d34dc0000\"" + ], + "x-ms-request-id": [ + "55fc5e8e-1e13-41e7-9cc5-0e4d59033bf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "82484c36-20fc-49ed-a4cc-363f2c5148ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032621Z:82484c36-20fc-49ed-a4cc-363f2c5148ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:20 GMT" + ], + "Content-Length": [ + "865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg182/providers/Microsoft.CognitiveServices/accounts/csapstestrg182\",\r\n \"name\": \"csapstestrg182\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"01002743-0000-0800-0000-5e1d34dc0000\\\"\",\r\n \"location\": \"West US 2\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Personalizer\",\r\n \"properties\": {\r\n \"endpoint\": \"https://westus2.api.cognitive.microsoft.com/\",\r\n \"internalId\": \"7a6376eace494e6fafedd66e075617b0\",\r\n \"dateCreated\": \"2020-01-14T03:26:20.6162546Z\",\r\n \"callRateLimit\": {\r\n \"rules\": [\r\n {\r\n \"key\": \"personalizer.rankreward\",\r\n \"renewalPeriod\": 1,\r\n \"count\": 2000,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"personalizer/v1.0/rank\",\r\n \"method\": \"POST\"\r\n },\r\n {\r\n \"path\": \"personalizer/v1.0/{eventId}/reward\",\r\n \"method\": \"POST\"\r\n }\r\n ]\r\n },\r\n {\r\n \"key\": \"default\",\r\n \"renewalPeriod\": 1,\r\n \"count\": 500,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"personalizer/v1.0/*\",\r\n \"method\": \"*\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg182/providers/Microsoft.CognitiveServices/accounts/csapstestrg182?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxODI/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce8dfabb-d3b1-4148-9b0a-e7ea98bc80ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"01002743-0000-0800-0000-5e1d34dc0000\"" + ], + "x-ms-request-id": [ + "b30fa801-1275-4b2b-95b5-98813220cb72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "28bed3f2-d913-4cc7-a644-1fa7f920b960" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032630Z:28bed3f2-d913-4cc7-a644-1fa7f920b960" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:30 GMT" + ], + "Content-Length": [ + "865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg182/providers/Microsoft.CognitiveServices/accounts/csapstestrg182\",\r\n \"name\": \"csapstestrg182\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"01002743-0000-0800-0000-5e1d34dc0000\\\"\",\r\n \"location\": \"West US 2\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Personalizer\",\r\n \"properties\": {\r\n \"endpoint\": \"https://westus2.api.cognitive.microsoft.com/\",\r\n \"internalId\": \"7a6376eace494e6fafedd66e075617b0\",\r\n \"dateCreated\": \"2020-01-14T03:26:20.6162546Z\",\r\n \"callRateLimit\": {\r\n \"rules\": [\r\n {\r\n \"key\": \"personalizer.rankreward\",\r\n \"renewalPeriod\": 1,\r\n \"count\": 2000,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"personalizer/v1.0/rank\",\r\n \"method\": \"POST\"\r\n },\r\n {\r\n \"path\": \"personalizer/v1.0/{eventId}/reward\",\r\n \"method\": \"POST\"\r\n }\r\n ]\r\n },\r\n {\r\n \"key\": \"default\",\r\n \"renewalPeriod\": 1,\r\n \"count\": 500,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"personalizer/v1.0/*\",\r\n \"method\": \"*\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg182/providers/Microsoft.CognitiveServices/accounts/csapstestrg182?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxODI/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78a31a73-8325-49c4-8058-171f129d0c41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "2be0e7d2-9ac0-47f5-a6c3-3f5ec8be16fe" + ], + "x-ms-correlation-request-id": [ + "2be0e7d2-9ac0-47f5-a6c3-3f5ec8be16fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032633Z:2be0e7d2-9ac0-47f5-a6c3-3f5ec8be16fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg182?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTgyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e47565f-658b-44fd-97a2-276194924a86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ef819ed9-1893-44f4-8dfb-35079a063f33" + ], + "x-ms-correlation-request-id": [ + "ef819ed9-1893-44f4-8dfb-35079a063f33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032633Z:ef819ed9-1893-44f4-8dfb-35079a063f33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU0TWkxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a1f869e1-3307-44fa-843f-f8e5cbef1908" + ], + "x-ms-correlation-request-id": [ + "a1f869e1-3307-44fa-843f-f8e5cbef1908" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032649Z:a1f869e1-3307-44fa-843f-f8e5cbef1908" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:26:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU0TWkxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "003671ba-b35a-4536-8efd-d9213b2ad6e5" + ], + "x-ms-correlation-request-id": [ + "003671ba-b35a-4536-8efd-d9213b2ad6e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032704Z:003671ba-b35a-4536-8efd-d9213b2ad6e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:27:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU0TWkxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "24caef89-aef1-48d5-9516-cf51ceaa529c" + ], + "x-ms-correlation-request-id": [ + "24caef89-aef1-48d5-9516-cf51ceaa529c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032719Z:24caef89-aef1-48d5-9516-cf51ceaa529c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:27:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE4Mi1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU0TWkxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "9240a7fd-bd92-4f96-b3f8-09fc0f792d6a" + ], + "x-ms-correlation-request-id": [ + "9240a7fd-bd92-4f96-b3f8-09fc0f792d6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200114T032719Z:9240a7fd-bd92-4f96-b3f8-09fc0f792d6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 14 Jan 2020 03:27:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AsyncAccountOperations": [ + "pstestrg182" + ] + }, + "Variables": { + "SubscriptionId": "f9b96b36-1f5e-4021-8959-51527e26e6d3" + } +} \ No newline at end of file diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/CognitiveServicesAccountBaseCmdlet.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/CognitiveServicesAccountBaseCmdlet.cs index 8c2fd131e858..4bfb246bfd4a 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/CognitiveServicesAccountBaseCmdlet.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/CognitiveServicesAccountBaseCmdlet.cs @@ -84,6 +84,11 @@ protected void RunCmdLet(Action action) } catch (ErrorException ex) { + if (ex.Body == null) + { + throw new PSInvalidOperationException(ex.Message, ex); + } + throw new PSInvalidOperationException(ex.Body.ErrorProperty.Message, ex); } } From 2013dfc5db7d568e0a23d44a3bcffb564c1b4d22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuan=20Yang=20=F0=9F=8D=80?= Date: Wed, 22 Jan 2020 13:49:35 -0800 Subject: [PATCH 14/44] Update SDK to 7.0.0. --- .../CognitiveServices.Test.csproj | 4 ++-- .../CognitiveServices/CognitiveServices.csproj | 2 +- ...dAzureCognitiveServicesAccountNetworkRule.cs | 17 +++++++++++------ ...ureCognitiveServicesAccountNetworkRuleSet.cs | 4 ++-- .../NewAzureCognitiveServicesAccount.cs | 10 +++++----- ...eAzureCognitiveServicesAccountNetworkRule.cs | 17 +++++++++++------ .../SetAzureCognitiveServicesAccount.cs | 16 ++++++++++------ ...ureCognitiveServicesAccountNetworkRuleSet.cs | 15 ++++++++++----- .../Models/PSCognitiveServicesAccount.cs | 10 +++++----- 9 files changed, 57 insertions(+), 38 deletions(-) diff --git a/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj b/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj index e0d1f918010e..d10acef03fb8 100644 --- a/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj +++ b/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj @@ -1,4 +1,4 @@ - + CognitiveServices @@ -11,7 +11,7 @@ - + diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj b/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj index f51c57e3d11c..dd0198c59e01 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj +++ b/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj @@ -11,7 +11,7 @@ - + \ No newline at end of file diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs index 68d6e482dbb9..b56e20b018de 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs @@ -99,7 +99,7 @@ public override void ExecuteCmdlet() var account = this.CognitiveServicesClient.Accounts.GetProperties( this.ResourceGroupName, this.Name); - NetworkRuleSet accountACL = account.NetworkAcls; + NetworkRuleSet accountACL = account.Properties.NetworkAcls; if (accountACL == null) { @@ -156,9 +156,14 @@ public override void ExecuteCmdlet() break; } - var properties = new JObject(); - properties["networkAcls"] = JToken.FromObject(accountACL); - this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, null, null, properties); + var properties = new CognitiveServicesAccountProperties(); + properties.NetworkAcls = accountACL; + this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, + new CognitiveServicesAccount() + { + Properties = properties + } + ); account = this.CognitiveServicesClient.Accounts.GetProperties(this.ResourceGroupName, this.Name); @@ -166,11 +171,11 @@ public override void ExecuteCmdlet() { case NetWorkRuleStringParameterSet: case NetworkRuleObjectParameterSet: - WriteObject(PSNetworkRuleSet.Create(account.NetworkAcls).VirtualNetworkRules); + WriteObject(PSNetworkRuleSet.Create(account.Properties.NetworkAcls).VirtualNetworkRules); break; case IpRuleStringParameterSet: case IpRuleObjectParameterSet: - WriteObject(PSNetworkRuleSet.Create(account.NetworkAcls).IpRules); + WriteObject(PSNetworkRuleSet.Create(account.Properties.NetworkAcls).IpRules); break; } } diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountNetworkRuleSet.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountNetworkRuleSet.cs index 2d2eca6fb945..bf1cc0c9129a 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountNetworkRuleSet.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountNetworkRuleSet.cs @@ -48,9 +48,9 @@ public override void ExecuteCmdlet() this.ResourceGroupName, this.Name); - if (account != null && account.NetworkAcls != null) + if (account != null && account.Properties.NetworkAcls != null) { - WriteObject(PSNetworkRuleSet.Create(account.NetworkAcls)); + WriteObject(PSNetworkRuleSet.Create(account.Properties.NetworkAcls)); } } } diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs index e8d8f504cde0..fac912bcf793 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs @@ -110,21 +110,21 @@ public override void ExecuteCmdlet() RunCmdLet(() => { - var properties = new JObject(); + var properties = new CognitiveServicesAccountProperties(); if (!string.IsNullOrWhiteSpace(CustomSubdomainName)) { - properties["customSubDomainName"] = CustomSubdomainName; + properties.CustomSubDomainName = CustomSubdomainName; } if (NetworkRuleSet != null) { - properties["networkAcls"] = JToken.FromObject(NetworkRuleSet); + properties.NetworkAcls = NetworkRuleSet.ToNetworkRuleSet(); } - CognitiveServicesAccountCreateParameters createParameters = new CognitiveServicesAccountCreateParameters() + CognitiveServicesAccount createParameters = new CognitiveServicesAccount() { Location = Location, Kind = Type, // must have value, mandatory parameter - Sku = new Sku(SkuName), + Sku = new Sku(SkuName, null), Tags = TagsConversionHelper.CreateTagDictionary(Tag), Properties = properties }; diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs index e713bc2a5867..01eb48a31369 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs @@ -102,7 +102,7 @@ public override void ExecuteCmdlet() var account = this.CognitiveServicesClient.Accounts.GetProperties( this.ResourceGroupName, this.Name); - NetworkRuleSet accountACL = account.NetworkAcls; + NetworkRuleSet accountACL = account.Properties.NetworkAcls; if (accountACL == null) { @@ -152,9 +152,14 @@ public override void ExecuteCmdlet() } - var properties = new JObject(); - properties["networkAcls"] = JToken.FromObject(accountACL); - this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, null, null, properties); + var properties = new CognitiveServicesAccountProperties(); + properties.NetworkAcls = accountACL; + this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, + new CognitiveServicesAccount() + { + Properties = properties + } + ); account = this.CognitiveServicesClient.Accounts.GetProperties(this.ResourceGroupName, this.Name); @@ -162,11 +167,11 @@ public override void ExecuteCmdlet() { case NetWorkRuleStringParameterSet: case NetworkRuleObjectParameterSet: - WriteObject(PSNetworkRuleSet.Create(account.NetworkAcls).VirtualNetworkRules); + WriteObject(PSNetworkRuleSet.Create(account.Properties.NetworkAcls).VirtualNetworkRules); break; case IpRuleStringParameterSet: case IpRuleObjectParameterSet: - WriteObject(PSNetworkRuleSet.Create(account.NetworkAcls).IpRules); + WriteObject(PSNetworkRuleSet.Create(account.Properties.NetworkAcls).IpRules); break; } } diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs index 5db738d3f212..63de07f2aced 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs @@ -89,16 +89,16 @@ public override void ExecuteCmdlet() base.ExecuteCmdlet(); bool hasPropertiesChange = false; - var properties = new JObject(); + var properties = new CognitiveServicesAccountProperties(); if (!string.IsNullOrWhiteSpace(CustomSubdomainName)) { hasPropertiesChange = true; - properties["customSubDomainName"] = CustomSubdomainName; + properties.CustomSubDomainName = CustomSubdomainName; } if (NetworkRuleSet != null) { hasPropertiesChange = true; - properties["networkAcls"] = JToken.FromObject(NetworkRuleSet); + properties.NetworkAcls = NetworkRuleSet.ToNetworkRuleSet(); } Sku sku = null; @@ -152,9 +152,13 @@ public override void ExecuteCmdlet() var updatedAccount = this.CognitiveServicesClient.Accounts.Update( this.ResourceGroupName, this.Name, - sku, - tags, - properties); + new CognitiveServicesAccount() + { + Sku = sku, + Tags = tags, + Properties = properties + } + ); WriteCognitiveServicesAccount(updatedAccount); }); diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs index 6f7cf68ae4c2..427ada04ee3c 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs @@ -114,7 +114,7 @@ public override void ExecuteCmdlet() var account = this.CognitiveServicesClient.Accounts.GetProperties( this.ResourceGroupName, this.Name); - NetworkRuleSet accountACL = account.NetworkAcls; + NetworkRuleSet accountACL = account.Properties.NetworkAcls; if (accountACL == null) { @@ -138,13 +138,18 @@ public override void ExecuteCmdlet() psNetworkRule.DefaultAction = defaultAction.Value; } - var properties = new JObject(); - properties["networkAcls"] = JToken.FromObject(psNetworkRule.ToNetworkRuleSet()); - this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, null, null, properties); + var properties = new CognitiveServicesAccountProperties(); + properties.NetworkAcls = psNetworkRule.ToNetworkRuleSet(); + this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, + new CognitiveServicesAccount() + { + Properties = properties + } + ); account = this.CognitiveServicesClient.Accounts.GetProperties(this.ResourceGroupName, this.Name); - WriteObject(PSNetworkRuleSet.Create(account.NetworkAcls)); + WriteObject(PSNetworkRuleSet.Create(account.Properties.NetworkAcls)); } } } diff --git a/src/CognitiveServices/CognitiveServices/Models/PSCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/Models/PSCognitiveServicesAccount.cs index 46fe4cb51034..26e5ba2a0bc6 100644 --- a/src/CognitiveServices/CognitiveServices/Models/PSCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/Models/PSCognitiveServicesAccount.cs @@ -27,19 +27,19 @@ public PSCognitiveServicesAccount(CognitiveServicesModels.CognitiveServicesAccou this.ResourceGroupName = ParseResourceGroupFromId(cognitiveServicesAccount.Id); this.AccountName = cognitiveServicesAccount.Name; this.Id = cognitiveServicesAccount.Id; - this.Endpoint = cognitiveServicesAccount.Endpoint; + this.Endpoint = cognitiveServicesAccount.Properties.Endpoint; this.Location = cognitiveServicesAccount.Location; this.Sku = cognitiveServicesAccount.Sku; this.AccountType = cognitiveServicesAccount.Kind; this.Etag = cognitiveServicesAccount.Etag; this.ResourceType = cognitiveServicesAccount.Type; - this.ProvisioningState = cognitiveServicesAccount.ProvisioningState; + this.ProvisioningState = cognitiveServicesAccount.Properties.ProvisioningState; this.Tags = cognitiveServicesAccount.Tags; - this.CustomSubDomainName = cognitiveServicesAccount.CustomSubDomainName; + this.CustomSubDomainName = cognitiveServicesAccount.Properties.CustomSubDomainName; - if (cognitiveServicesAccount.NetworkAcls != null) + if (cognitiveServicesAccount.Properties.NetworkAcls != null) { - this.NetworkRuleSet = PSNetworkRuleSet.Create(cognitiveServicesAccount.NetworkAcls); + this.NetworkRuleSet = PSNetworkRuleSet.Create(cognitiveServicesAccount.Properties.NetworkAcls); } } From bd2f76f384969e543415b7961798ccc5041d936f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuan=20Yang=20=F0=9F=8D=80?= Date: Wed, 22 Jan 2020 15:04:04 -0800 Subject: [PATCH 15/44] Update change log --- src/CognitiveServices/CognitiveServices/ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index 90ea29a5d0db..35e5241cf00b 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Update SDK to 7.0 +* Improve error message when server responses empty body ## Version 1.2.2 * Update references in .psd1 to use relative path From c4b4169d66fa0fe86bf17f7f38a58576ee09826a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuan=20Yang=20=F0=9F=8D=80?= Date: Mon, 3 Feb 2020 19:00:45 -0800 Subject: [PATCH 16/44] Update style --- .../AddAzureCognitiveServicesAccountNetworkRule.cs | 4 +++- .../RemoveAzureCognitiveServicesAccountNetworkRule.cs | 4 +++- .../SetAzureCognitiveServicesAccount.cs | 6 +++--- .../UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs | 4 +++- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs index b56e20b018de..dec8413e683a 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs @@ -158,7 +158,9 @@ public override void ExecuteCmdlet() var properties = new CognitiveServicesAccountProperties(); properties.NetworkAcls = accountACL; - this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, + this.CognitiveServicesClient.Accounts.Update( + this.ResourceGroupName, + this.Name, new CognitiveServicesAccount() { Properties = properties diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs index 01eb48a31369..d583f79978ee 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs @@ -154,7 +154,9 @@ public override void ExecuteCmdlet() var properties = new CognitiveServicesAccountProperties(); properties.NetworkAcls = accountACL; - this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, + this.CognitiveServicesClient.Accounts.Update( + this.ResourceGroupName, + this.Name, new CognitiveServicesAccount() { Properties = properties diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs index 63de07f2aced..fef02b1aba89 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs @@ -154,9 +154,9 @@ public override void ExecuteCmdlet() this.Name, new CognitiveServicesAccount() { - Sku = sku, - Tags = tags, - Properties = properties + Sku = sku, + Tags = tags, + Properties = properties } ); diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs index 427ada04ee3c..81c29440abd3 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs @@ -140,7 +140,9 @@ public override void ExecuteCmdlet() var properties = new CognitiveServicesAccountProperties(); properties.NetworkAcls = psNetworkRule.ToNetworkRuleSet(); - this.CognitiveServicesClient.Accounts.Update(this.ResourceGroupName, this.Name, + this.CognitiveServicesClient.Accounts.Update( + this.ResourceGroupName, + this.Name, new CognitiveServicesAccount() { Properties = properties From 232f6ba80ab6d577d9122c41613a617b94fe8987 Mon Sep 17 00:00:00 2001 From: Diego Gavinowich Date: Wed, 5 Feb 2020 16:59:49 -0800 Subject: [PATCH 17/44] Initial cmdlet to get managed rule definitions --- src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 | 1 + ...eRmFrontDoorWafManagedRuleSetDefinition.cs | 47 +++++++++++++++++++ .../FrontDoor/Helpers/ModelExtensions.cs | 35 ++++++++++++++ .../Models/PSManagedRuleDefinition.cs | 29 ++++++++++++ .../Models/PSManagedRuleGroupDefinition.cs | 27 +++++++++++ .../Models/PSManagedRuleSetDefinition.cs | 29 ++++++++++++ 6 files changed, 168 insertions(+) create mode 100644 src/FrontDoor/FrontDoor/Cmdlets/GetAzureRmFrontDoorWafManagedRuleSetDefinition.cs create mode 100644 src/FrontDoor/FrontDoor/Models/PSManagedRuleDefinition.cs create mode 100644 src/FrontDoor/FrontDoor/Models/PSManagedRuleGroupDefinition.cs create mode 100644 src/FrontDoor/FrontDoor/Models/PSManagedRuleSetDefinition.cs diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index 5ea5edafbe57..518284d9e7ab 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -85,6 +85,7 @@ CmdletsToExport = 'New-AzFrontDoor', 'Get-AzFrontDoor', 'Set-AzFrontDoor', 'New-AzFrontDoorWafCustomRuleObject', 'New-AzFrontDoorWafManagedRuleObject', 'New-AzFrontDoorWafPolicy', 'Get-AzFrontDoorWafPolicy', 'Update-AzFrontDoorWafPolicy', + 'Get-AzFrontDoorWafManagedRuleSetDefinition', 'Remove-AzFrontDoorWafPolicy', 'New-AzFrontDoorWafRuleGroupOverrideObject', 'Remove-AzFrontDoorContent', 'Enable-AzFrontDoorCustomDomainHttps', diff --git a/src/FrontDoor/FrontDoor/Cmdlets/GetAzureRmFrontDoorWafManagedRuleSetDefinition.cs b/src/FrontDoor/FrontDoor/Cmdlets/GetAzureRmFrontDoorWafManagedRuleSetDefinition.cs new file mode 100644 index 000000000000..4c2e84661be1 --- /dev/null +++ b/src/FrontDoor/FrontDoor/Cmdlets/GetAzureRmFrontDoorWafManagedRuleSetDefinition.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.FrontDoor.Common; +using Microsoft.Azure.Commands.FrontDoor.Helpers; +using Microsoft.Azure.Commands.FrontDoor.Models; +using Microsoft.Azure.Management.FrontDoor.Models; +using Microsoft.Rest.Azure; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets +{ + /// + /// Defines the Get-AzFrontDoorWafManagedRuleSetDefinition cmdlet. + /// + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorWafManagedRuleSetDefinition"), OutputType(typeof(PSManagedRuleSetDefinition))] + public class GetAzureRmFrontDoorWafManagedRuleSetDefinition : AzureFrontDoorCmdletBase + { + public override void ExecuteCmdlet() + { + AzureOperationResponse> managedSets = FrontDoorManagementClient.ManagedRuleSets.ListWithHttpMessagesAsync().GetAwaiter().GetResult(); + List managedRuleSetDefinitions = managedSets.Body?.Select(managedRuleSetDefinition => managedRuleSetDefinition.ToPSManagedRuleSetDefinition()).ToList(); + string nextLink = managedSets.Body.NextPageLink; + while (nextLink != null) + { + var nextLinkSets = FrontDoorManagementClient.ManagedRuleSets.ListNextWithHttpMessagesAsync(nextLink).GetAwaiter().GetResult(); + managedRuleSetDefinitions.AddRange(nextLinkSets.Body?.Select(managedRuleSetDefinition => managedRuleSetDefinition.ToPSManagedRuleSetDefinition())); + nextLink = nextLinkSets.Body.NextPageLink; + } + + WriteObject(managedRuleSetDefinitions.ToArray(), true); + } + } +} diff --git a/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs b/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs index f244f2d8549e..078a438cf4a1 100644 --- a/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs +++ b/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs @@ -38,7 +38,10 @@ using SdkHttpsConfig = Microsoft.Azure.Management.FrontDoor.Models.CustomHttpsConfiguration; using SdkLoadBalancingSetting = Microsoft.Azure.Management.FrontDoor.Models.LoadBalancingSettingsModel; using SdkManagedRule = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleSet; +using SdkManagedRuleDefinition = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleDefinition; +using SdkManagedRuleGroupDefinition = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleGroupDefinition; using SdkManagedRuleList = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleSetList; +using SdkManagedRuleSetDefinition = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleSetDefinition; using sdkMatchCondition = Microsoft.Azure.Management.FrontDoor.Models.MatchCondition; using sdkPolicySetting = Microsoft.Azure.Management.FrontDoor.Models.PolicySettings; using SdkRedirectConfiguration = Microsoft.Azure.Management.FrontDoor.Models.RedirectConfiguration; @@ -431,6 +434,38 @@ public static PSPolicy ToPSPolicy(this SdkFirewallPolicy sdkPolicy) }; } + public static PSManagedRuleSetDefinition ToPSManagedRuleSetDefinition(this SdkManagedRuleSetDefinition sdkManagedRuleSetDefinition) + { + return new PSManagedRuleSetDefinition + { + ProvisioningState = sdkManagedRuleSetDefinition.ProvisioningState, + RuleSetType = sdkManagedRuleSetDefinition.RuleSetType, + RuleSetVersion = sdkManagedRuleSetDefinition.RuleSetVersion, + RuleGroups = sdkManagedRuleSetDefinition.RuleGroups?.Select(ruleGroup => ruleGroup.ToPSManagedRuleGroupDefinition()).ToList() + }; + } + + public static PSManagedRuleGroupDefinition ToPSManagedRuleGroupDefinition(this SdkManagedRuleGroupDefinition sdkManagedRuleGroupDefinition) + { + return new PSManagedRuleGroupDefinition + { + RuleGroupName = sdkManagedRuleGroupDefinition.RuleGroupName, + Description = sdkManagedRuleGroupDefinition.Description, + Rules = sdkManagedRuleGroupDefinition.Rules?.Select(rule => rule.ToPSManagedRuleDefinition()).ToList() + }; + } + + public static PSManagedRuleDefinition ToPSManagedRuleDefinition(this SdkManagedRuleDefinition sdkManagedRuleDefinition) + { + return new PSManagedRuleDefinition + { + RuleId = sdkManagedRuleDefinition.RuleId, + DefaultAction = sdkManagedRuleDefinition.DefaultAction, + DefaultState = sdkManagedRuleDefinition.DefaultState, + Description = sdkManagedRuleDefinition.Description + }; + } + public static PSMatchCondition ToPSMatchCondition(this sdkMatchCondition sdkMatchCondition) { return new PSMatchCondition diff --git a/src/FrontDoor/FrontDoor/Models/PSManagedRuleDefinition.cs b/src/FrontDoor/FrontDoor/Models/PSManagedRuleDefinition.cs new file mode 100644 index 000000000000..ec4bc2766f7a --- /dev/null +++ b/src/FrontDoor/FrontDoor/Models/PSManagedRuleDefinition.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; + +namespace Microsoft.Azure.Commands.FrontDoor.Models +{ + public class PSManagedRuleDefinition + { + public string RuleId { get; set; } + + public string DefaultState { get; set; } + + public string DefaultAction { get; set; } + + public string Description { get; set; } + } +} diff --git a/src/FrontDoor/FrontDoor/Models/PSManagedRuleGroupDefinition.cs b/src/FrontDoor/FrontDoor/Models/PSManagedRuleGroupDefinition.cs new file mode 100644 index 000000000000..73dd93b08216 --- /dev/null +++ b/src/FrontDoor/FrontDoor/Models/PSManagedRuleGroupDefinition.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. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.FrontDoor.Models +{ + public class PSManagedRuleGroupDefinition + { + public string RuleGroupName { get; set; } + + public string Description { get; set; } + + public IList Rules { get; set; } + } +} diff --git a/src/FrontDoor/FrontDoor/Models/PSManagedRuleSetDefinition.cs b/src/FrontDoor/FrontDoor/Models/PSManagedRuleSetDefinition.cs new file mode 100644 index 000000000000..3de9d0a52141 --- /dev/null +++ b/src/FrontDoor/FrontDoor/Models/PSManagedRuleSetDefinition.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; + +namespace Microsoft.Azure.Commands.FrontDoor.Models +{ + public class PSManagedRuleSetDefinition + { + public string ProvisioningState { get; set; } + + public string RuleSetType { get; set; } + + public string RuleSetVersion { get; set; } + + public IList RuleGroups { get; set; } + } +} From 39a573a858c1109ed84c0070eb965a4669e466b1 Mon Sep 17 00:00:00 2001 From: Diego Gavinowich Date: Wed, 5 Feb 2020 18:18:36 -0800 Subject: [PATCH 18/44] Add test cases for new cmdlet --- .../WebApplicationFireWallPolicyTests.cs | 7 ++ .../WebApplicationFireWallPolicyTests.ps1 | 27 +++++- .../TestManagedRuleSetDefinitions.json | 83 +++++++++++++++++++ 3 files changed, 116 insertions(+), 1 deletion(-) create mode 100644 src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestManagedRuleSetDefinitions.json diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.cs b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.cs index f1047d249983..6e91238e7e41 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.cs +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.cs @@ -41,5 +41,12 @@ public void TestPolicyCrudWithPiping() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-PolicyCrudWithPiping"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedRuleSetDefinitions() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-ManagedRuleSetDefinition"); + } } } diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 index ef39c36a1f3f..9b4d28ddb30e 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 @@ -114,4 +114,29 @@ function Test-PolicyCrudWithPiping $removed = Get-AzFrontDoorWafPolicy -Name $Name -ResourceGroupName $resourceGroupName | Remove-AzFrontDoorWafPolicy -PassThru Assert-True { $removed } Assert-ThrowsContains { Get-AzFrontDoorWafPolicy -Name $Name -ResourceGroupName $resourceGroupName } "does not exist." -} \ No newline at end of file +} + +<# +.SYNOPSIS +WAF managed rule set definitions retrieval +#> +function Test-ManagedRuleSetDefinition +{ + $definitions = Get-AzFrontDoorWafManagedRuleSetDefinition | sort -Property RuleSetType,RuleSetVersion + Assert-AreEqual $definitions.Count 4 + Assert-AreEqual $definitions[0].RuleSetType "BotProtection" + Assert-AreEqual $definitions[0].RuleSetVersion "preview-0.1" + Assert-AreEqual $definitions[0].RuleGroups.Count 1 + + Assert-AreEqual $definitions[1].RuleSetType "DefaultRuleSet" + Assert-AreEqual $definitions[1].RuleSetVersion "1.0" + Assert-AreEqual $definitions[1].RuleGroups.Count 9 + + Assert-AreEqual $definitions[2].RuleSetType "DefaultRuleSet" + Assert-AreEqual $definitions[2].RuleSetVersion "preview-0.1" + Assert-AreEqual $definitions[2].RuleGroups.Count 8 + + Assert-AreEqual $definitions[3].RuleSetType "Microsoft_BotManagerRuleSet" + Assert-AreEqual $definitions[3].RuleSetVersion "1.0" + Assert-AreEqual $definitions[3].RuleGroups.Count 3 +} diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestManagedRuleSetDefinitions.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestManagedRuleSetDefinitions.json new file mode 100644 index 000000000000..0b161c67bdb1 --- /dev/null +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestManagedRuleSetDefinitions.json @@ -0,0 +1,83 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Network/FrontDoorWebApplicationFirewallManagedRuleSets?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9Gcm9udERvb3JXZWJBcHBsaWNhdGlvbkZpcmV3YWxsTWFuYWdlZFJ1bGVTZXRzP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "489776b6-662b-4209-b400-114d07087965" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2bbe63b0-0310-4284-9d2e-fd8f462c93ad" + ], + "x-ms-client-request-id": [ + "489776b6-662b-4209-b400-114d07087965" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a81b8106-0e5a-43b1-9f51-61d69d7d426b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200206T021627Z:a81b8106-0e5a-43b1-9f51-61d69d7d426b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Feb 2020 02:16:27 GMT" + ], + "Content-Length": [ + "43395" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DefaultRuleSet_1.0\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets/DefaultRuleSet_1.0\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetId\": \"8125d145-ddc5-4d90-9bc3-24c5f2de69a2\",\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"PROTOCOL-ATTACK\",\r\n \"description\": \"Protocol attack\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"921110\",\r\n \"description\": \"HTTP Request Smuggling Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"921120\",\r\n \"description\": \"HTTP Response Splitting Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"921130\",\r\n \"description\": \"HTTP Response Splitting Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"921140\",\r\n \"description\": \"HTTP Header Injection Attack via headers\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"921150\",\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"921160\",\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"921151\",\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"LFI\",\r\n \"description\": \"Local file inclusion\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"930100\",\r\n \"description\": \"Path Traversal Attack (/../)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"930110\",\r\n \"description\": \"Path Traversal Attack (/../)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"930120\",\r\n \"description\": \"OS File Access Attempt\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"930130\",\r\n \"description\": \"Restricted File Access Attempt\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"RFI\",\r\n \"description\": \"Remote file inclusion\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"931100\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"931110\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"931120\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"931130\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"RCE\",\r\n \"description\": \"Remote Command Execution attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"932100\",\r\n \"description\": \"Remote Command Execution: Unix Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932105\",\r\n \"description\": \"Remote Command Execution: Unix Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932110\",\r\n \"description\": \"Remote Command Execution: Windows Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932115\",\r\n \"description\": \"Remote Command Execution: Windows Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932120\",\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932130\",\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932140\",\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932150\",\r\n \"description\": \"Remote Command Execution: Direct Unix Command Execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932160\",\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932170\",\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932171\",\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932180\",\r\n \"description\": \"Restricted File Upload Attempt\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"PHP\",\r\n \"description\": \"PHP attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"933100\",\r\n \"description\": \"PHP Injection Attack: PHP Open Tag Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933110\",\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933120\",\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933130\",\r\n \"description\": \"PHP Injection Attack: Variables Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933140\",\r\n \"description\": \"PHP Injection Attack: I/O Stream Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933150\",\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933151\",\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933160\",\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933170\",\r\n \"description\": \"PHP Injection Attack: Serialized Object Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933180\",\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"XSS\",\r\n \"description\": \"Cross-site scripting\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"941100\",\r\n \"description\": \"XSS Attack Detected via libinjection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941101\",\r\n \"description\": \"XSS Attack Detected via libinjection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941110\",\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941120\",\r\n \"description\": \"XSS Filter - Category 2: Event Handler Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941130\",\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941140\",\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941150\",\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941160\",\r\n \"description\": \"NoScript XSS InjectionChecker: HTML Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941170\",\r\n \"description\": \"NoScript XSS InjectionChecker: Attribute Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941180\",\r\n \"description\": \"Node-Validator Blacklist Keywords\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941190\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941200\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941210\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941220\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941230\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941240\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941250\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941260\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941270\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941280\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941290\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941300\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941310\",\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941320\",\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941330\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941340\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941350\",\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"description\": \"SQL injection\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"description\": \"SQL Injection Attack Detected via libinjection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942110\",\r\n \"description\": \"SQL Injection Attack: Common Injection Testing Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942120\",\r\n \"description\": \"SQL Injection Attack: SQL Operator Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942140\",\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942150\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942160\",\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942170\",\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942180\",\r\n \"description\": \"Detects basic SQL authentication bypass attempts 1/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942190\",\r\n \"description\": \"Detects MSSQL code execution and information gathering attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942200\",\r\n \"description\": \"Detects MySQL comment-/space-obfuscated injections and backtick termination\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942210\",\r\n \"description\": \"Detects chained SQL injection attempts 1/2\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942220\",\r\n \"description\": \"Looking for integer overflow attacks, these are taken from skipfish, except 3.0.00738585072007e-308 is the \\\"magic number\\\" crash\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942230\",\r\n \"description\": \"Detects conditional SQL injection attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942240\",\r\n \"description\": \"Detects MySQL charset switch and MSSQL DoS attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942250\",\r\n \"description\": \"Detects MATCH AGAINST, MERGE and EXECUTE IMMEDIATE injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942260\",\r\n \"description\": \"Detects basic SQL authentication bypass attempts 2/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942270\",\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942280\",\r\n \"description\": \"Detects Postgres pg_sleep injection, waitfor delay attacks and database shutdown attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942290\",\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942300\",\r\n \"description\": \"Detects MySQL comments, conditions and ch(a)r injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942310\",\r\n \"description\": \"Detects chained SQL injection attempts 2/2\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942320\",\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942330\",\r\n \"description\": \"Detects classic SQL injection probings 1/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942340\",\r\n \"description\": \"Detects basic SQL authentication bypass attempts 3/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942350\",\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942360\",\r\n \"description\": \"Detects concatenated basic SQL injection and SQLLFI attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942361\",\r\n \"description\": \"Detects basic SQL injection based on keyword alter or union\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942370\",\r\n \"description\": \"Detects classic SQL injection probings 2/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942380\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942390\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942400\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942410\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942430\",\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (12)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942440\",\r\n \"description\": \"SQL Comment Sequence Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942450\",\r\n \"description\": \"SQL Hex Encoding Identified\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942470\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942480\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"FIX\",\r\n \"description\": \"Session Fixation attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"943100\",\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"943110\",\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"943120\",\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"description\": \"Java attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"description\": \"Remote Command Execution: Suspicious Java class detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944110\",\r\n \"description\": \"Remote Command Execution: Java process spawn (CVE-2017-9805)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944120\",\r\n \"description\": \"Remote Command Execution: Java serialization (CVE-2015-5842)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944130\",\r\n \"description\": \"Suspicious Java class detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944200\",\r\n \"description\": \"Magic bytes Detected, probable java serialization in use\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944210\",\r\n \"description\": \"Magic bytes Detected Base64 Encoded, probable java serialization in use\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944240\",\r\n \"description\": \"Remote Command Execution: Java serialization (CVE-2015-5842)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944250\",\r\n \"description\": \"Remote Command Execution: Suspicious Java method detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft_BotManagerRuleSet_1.0\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets/Microsoft_BotManagerRuleSet_1.0\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetId\": \"e44514af-018d-49e9-8070-c9edac0f3a0d\",\r\n \"ruleSetType\": \"Microsoft_BotManagerRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"BadBots\",\r\n \"description\": \"Bad bots\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"Bot100100\",\r\n \"description\": \"Malicious bots detected by threat intelligence\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot100200\",\r\n \"description\": \"Malicious bots that have falsified their identity\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"GoodBots\",\r\n \"description\": \"Good bots\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"Bot200100\",\r\n \"description\": \"Search engine crawlers\",\r\n \"defaultAction\": \"Allow\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot200200\",\r\n \"description\": \"Unverified search engine crawlers\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"UnknownBots\",\r\n \"description\": \"Unknown bots\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"Bot300100\",\r\n \"description\": \"Unspecified identity\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot300200\",\r\n \"description\": \"Tools and frameworks for web crawling and attacks\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot300300\",\r\n \"description\": \"General purpose HTTP clients and SDKs\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot300400\",\r\n \"description\": \"Service agents\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot300500\",\r\n \"description\": \"Site health monitoring services\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot300600\",\r\n \"description\": \"Unknown bots detected by threat intelligence\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"Bot300700\",\r\n \"description\": \"Other bots\",\r\n \"defaultAction\": \"Log\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"DefaultRuleSet_preview-0.1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets/DefaultRuleSet_preview-0.1\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetId\": \"8125d145-ddc5-4d90-9bc3-24c5f2de69a2\",\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"LFI\",\r\n \"description\": \"Local file inclusion\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"930100\",\r\n \"description\": \"Path Traversal Attack (/../) using Encoded Payloads\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"930110\",\r\n \"description\": \"Path Traversal Attack (/../) using Decoded Payloads\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"930130\",\r\n \"description\": \"Restricted File Access Attempt\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"RFI\",\r\n \"description\": \"Remote file inclusion\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"931100\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"931110\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"931120\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"931130\",\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"RCE\",\r\n \"description\": \"Remote Command Execution attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"932100\",\r\n \"description\": \"Remote Command Execution: Unix Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932105\",\r\n \"description\": \"Remote Command Execution: Unix Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932106\",\r\n \"description\": \"Remote Command Execution: Unix Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932110\",\r\n \"description\": \"Remote Command Execution: Windows Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932115\",\r\n \"description\": \"Remote Command Execution: Windows Command Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932130\",\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932140\",\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932150\",\r\n \"description\": \"Remote Command Execution: Direct Unix Command Execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932170\",\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932171\",\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"932190\",\r\n \"description\": \"Remote Command Execution: Wildcard\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"PHP\",\r\n \"description\": \"PHP attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"933100\",\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933110\",\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933111\",\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933131\",\r\n \"description\": \"PHP Injection Attack: Variables Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933140\",\r\n \"description\": \"PHP Injection Attack: I/O Stream Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933160\",\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933161\",\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933170\",\r\n \"description\": \"PHP Injection Attack: Serialized Object Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933180\",\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933190\",\r\n \"description\": \"PHP Injection Attack: PHP Closing Tag Found\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933200\",\r\n \"description\": \"PHP Injection Attack: Abusing of PHP wrappers could lead to RCE\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"933210\",\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found (bypass 933180)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"XSS\",\r\n \"description\": \"Cross-site scripting\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"941100\",\r\n \"description\": \"XSS Attack Detected via libinjection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941101\",\r\n \"description\": \"XSS Attack Detected via libinjection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941110\",\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941120\",\r\n \"description\": \"XSS Filter - Category 2: Event Handler Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941130\",\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941140\",\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941150\",\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941160\",\r\n \"description\": \"NoScript XSS InjectionChecker: HTML Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941170\",\r\n \"description\": \"NoScript XSS InjectionChecker: Attribute Injection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941180\",\r\n \"description\": \"Node-Validator Blacklist Keywords\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941190\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941200\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941210\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941220\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941230\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941240\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941250\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941260\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941270\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941280\",\r\n \"description\": \"IE XSS Filters - Attack Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941290\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941300\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941310\",\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941320\",\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941330\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941340\",\r\n \"description\": \"IE XSS Filters - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941350\",\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"941360\",\r\n \"description\": \"JSFuck / Hieroglyphy obfuscation detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"description\": \"SQL injection\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"description\": \"SQL Injection Attack Detected via libinjection\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942110\",\r\n \"description\": \"SQL Injection Attack: Common Injection Testing Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942120\",\r\n \"description\": \"SQL Injection Attack: SQL Operator Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942140\",\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942160\",\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942170\",\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942180\",\r\n \"description\": \"Detects basic SQL authentication bypass attempts 1/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942190\",\r\n \"description\": \"Detects MSSQL code execution and information gathering attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942200\",\r\n \"description\": \"Detects MySQL comment-/space-obfuscated injections and backtick termination\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942210\",\r\n \"description\": \"Detects chained SQL injection attempts 1/2\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942220\",\r\n \"description\": \"Looking for integer overflow attacks, these are taken from skipfish, except 3.0.00738585072007e-308 is the \\\"magic number\\\" crash\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942230\",\r\n \"description\": \"Detects conditional SQL injection attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942240\",\r\n \"description\": \"Detects MySQL charset switch and MSSQL DoS attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942250\",\r\n \"description\": \"Detects MATCH AGAINST, MERGE and EXECUTE IMMEDIATE injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942251\",\r\n \"description\": \"Detects HAVING injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942260\",\r\n \"description\": \"Detects basic SQL authentication bypass attempts 2/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942270\",\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942280\",\r\n \"description\": \"Detects Postgres pg_sleep injection, waitfor delay attacks and database shutdown attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942290\",\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942300\",\r\n \"description\": \"Detects MySQL comments, conditions and ch(a)r injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942310\",\r\n \"description\": \"Detects chained SQL injection attempts 2/2\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942320\",\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942330\",\r\n \"description\": \"Detects classic SQL injection probings 1/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942340\",\r\n \"description\": \"Detects basic SQL authentication bypass attempts 3/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942350\",\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942360\",\r\n \"description\": \"Detects concatenated basic SQL injection and SQLLFI attempts\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942361\",\r\n \"description\": \"Detects basic SQL injection based on keyword alter or union\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942370\",\r\n \"description\": \"Detects classic SQL injection probings 2/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942380\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942390\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942400\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942410\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942430\",\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (12)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942431\",\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (6)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942432\",\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (2)\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942440\",\r\n \"description\": \"SQL Comment Sequence Detected.\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942450\",\r\n \"description\": \"SQL Hex Encoding Identified\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942470\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942480\",\r\n \"description\": \"SQL Injection Attack\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"942490\",\r\n \"description\": \"Detects classic SQL injection probings 3/3\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"FIX\",\r\n \"description\": \"Session Fixation attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"943100\",\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"description\": \"Java attacks\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"description\": \"Java: possible payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944110\",\r\n \"description\": \"Java: possible payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944120\",\r\n \"description\": \"Java: possible payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944200\",\r\n \"description\": \"Java: deserialization that could lead to payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944210\",\r\n \"description\": \"Java: base64 attack that could lead to payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944240\",\r\n \"description\": \"Java: possible payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944250\",\r\n \"description\": \"Java: possible payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n },\r\n {\r\n \"ruleId\": \"944300\",\r\n \"description\": \"Java: base64 attack that could lead to payload execution\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"BotProtection_preview-0.1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets/BotProtection_preview-0.1\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetId\": \"e44514af-018d-49e9-8070-c9edac0f3a0d\",\r\n \"ruleSetType\": \"BotProtection\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"KnownBadBots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"Bot00001\",\r\n \"description\": \"Malicious Bots\",\r\n \"defaultAction\": \"Block\",\r\n \"defaultState\": \"Enabled\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "47f4bc68-6fe4-43a2-be8b-dfd0e290efa2" + } +} \ No newline at end of file From 6cfaf10d6a5656d034cc2bc4287370eb33ffe684 Mon Sep 17 00:00:00 2001 From: Diego Gavinowich Date: Wed, 5 Feb 2020 19:00:08 -0800 Subject: [PATCH 19/44] Update help --- src/FrontDoor/FrontDoor/help/Az.FrontDoor.md | 3 + ...-AzFrontDoorWafManagedRuleSetDefinition.md | 72 +++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 src/FrontDoor/FrontDoor/help/Get-AzFrontDoorWafManagedRuleSetDefinition.md diff --git a/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md b/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md index 0f92c82c347a..b8b175d74160 100644 --- a/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md +++ b/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md @@ -23,6 +23,9 @@ Get Front Door load balancer ### [Get-AzFrontDoorFrontendEndpoint](Get-AzFrontDoorFrontendEndpoint.md) Get a front door frontend endpoint. +### [Get-AzFrontDoorWafManagedRuleSetDefinition](Get-AzFrontDoorWafManagedRuleSetDefinition.md) +Get WAF managed rule set definitions + ### [Get-AzFrontDoorWafPolicy](Get-AzFrontDoorWafPolicy.md) Get WAF policy diff --git a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorWafManagedRuleSetDefinition.md b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorWafManagedRuleSetDefinition.md new file mode 100644 index 000000000000..1479b5ae6dca --- /dev/null +++ b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorWafManagedRuleSetDefinition.md @@ -0,0 +1,72 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll-Help.xml +Module Name: Az.FrontDoor +online version: https://docs.microsoft.com/en-us/powershell/module/az.frontdoor/get-azfrontdoorwafmanagedrulesetdefinition +schema: 2.0.0 +--- + +# Get-AzFrontDoorWafManagedRuleSetDefinition + +## SYNOPSIS +Get WAF managed rule set definitions + +## SYNTAX + +``` +Get-AzFrontDoorWafManagedRuleSetDefinition [-DefaultProfile ] [] +``` + +## DESCRIPTION +Gets the list of WAF managed rule set definitions to use as reference + +## EXAMPLES + +### Example 1 +```powershell +PS C:> Get-AzFrontDoorWafManagedRuleSetDefinition + +ProvisioningState RuleSetType RuleSetVersion RuleGroups +----------------- ----------- -------------- ---------- +Succeeded DefaultRuleSet 1.0 {PROTOCOL-ATTACK, LFI, RFI, RCE...} +Succeeded Microsoft_BotManagerRuleSet 1.0 {BadBots, GoodBots, UnknownBots} +Succeeded DefaultRuleSet preview-0.1 {LFI, RFI, RCE, PHP...} +Succeeded BotProtection preview-0.1 {KnownBadBots} +``` + +{{ Add example description here }} + +## 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 +``` + +### 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 + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleSetDefinition + +## NOTES + +## RELATED LINKS + +[New-AzFrontDoorWafManagedRuleObject](./New-AzFrontDoorWafManagedRuleObject.md) +[New-AzFrontDoorWafManagedRuleOverrideObject](./New-AzFrontDoorWafManagedRuleOverrideObject.md) +[New-AzFrontDoorWafRuleGroupOverrideObject](./New-AzFrontDoorWafRuleGroupOverrideObject.md) From e414ef8d619eeaac0d39c6780a5c0be0740b62cf Mon Sep 17 00:00:00 2001 From: Sivan Guetta Date: Thu, 6 Feb 2020 14:53:58 +0200 Subject: [PATCH 20/44] Support a new parameter called -ActionGroupId in the Add-AzMetricAlertRuleV2 command --- .../AddAzureRmMetricAlertRuleV2Tests.cs | 123 +++ .../Monitor.Test/ScenarioTests/AlertsTests.cs | 7 + .../ScenarioTests/AlertsTests.ps1 | 41 + ...eRmMetricAlertRuleV2WithActionGroupId.json | 957 ++++++++++++++++++ .../AddAzureRmMetricAlertRuleV2Command.cs | 54 +- .../Monitor/help/Add-AzMetricAlertRuleV2.md | 55 +- .../Az.Monitor/BreakingChangeIssues.csv | 3 + 7 files changed, 1209 insertions(+), 31 deletions(-) create mode 100644 src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs create mode 100644 src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json diff --git a/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs b/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs new file mode 100644 index 000000000000..cee55966c445 --- /dev/null +++ b/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs @@ -0,0 +1,123 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Insights.Alerts; +using Microsoft.Azure.Commands.Insights.OutputClasses; +using Microsoft.Azure.Management.Monitor; +using Microsoft.Azure.Management.Monitor.Models; +using Microsoft.Rest.Azure; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Threading; +using Xunit; +using Xunit.Abstractions; +namespace Microsoft.Azure.Commands.Insights.Test.Alerts +{ + public class AddAzureRmMetricAlertRuleV2Tests + { + private readonly AddAzureRmMetricAlertRuleV2Command _cmdlet; + private readonly Mock _insightsMetricAlertsOperationsMock; + + public AddAzureRmMetricAlertRuleV2Tests(ITestOutputHelper output) + { + var commandRuntimeMock = new Mock(); + var insightsManagementClientMock = new Mock() { CallBase = true }; + _insightsMetricAlertsOperationsMock = new Mock(); + _cmdlet = new AddAzureRmMetricAlertRuleV2Command() + { + CommandRuntime = commandRuntimeMock.Object, + MonitorManagementClient = insightsManagementClientMock.Object + }; + + PopulateCmdletDefaultParameters(); + + commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); + + + _insightsMetricAlertsOperationsMock.Setup(f => f.CreateOrUpdateWithHttpMessagesAsync(It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny>>(), It.IsAny())) + .ReturnsAsync((string resourceGrp, string name, MetricAlertResource createOrUpdateParams, Dictionary> u, + CancellationToken t) => new AzureOperationResponse() + { + Body = createOrUpdateParams + }); + + insightsManagementClientMock.SetupGet(f => f.MetricAlerts).Returns(this._insightsMetricAlertsOperationsMock.Object); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewMetricAlertRuleV2ByTargetResourceIdAndActionGroupIdParametersProcessing() + { + _cmdlet.TargetResourceId = "resourceId"; + _cmdlet.ActionGroupId = new[] { "actionGroupId1", "actionGroupId2" }; + + _cmdlet.ExecuteCmdlet(); + + Func verify = metricAlert => + { + Assert.Contains(_cmdlet.ActionGroupId[0], metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Contains(_cmdlet.ActionGroupId[1], metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Contains(_cmdlet.TargetResourceId, metricAlert.Scopes); + return true; + }; + + this._insightsMetricAlertsOperationsMock.Verify(o => o.CreateOrUpdateWithHttpMessagesAsync(It.IsAny(), It.IsAny(), It.Is(r => verify(r)), It.IsAny>>(), + It.IsAny()), Times.Once); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewMetricAlertRuleV2ByTargetResourceScopeAndActionGroupParametersProcessing() + { + _cmdlet.TargetResourceScope = new[] { "resourceId1", "resourceId2" }; + _cmdlet.ActionGroup = new[] { + new ActivityLogAlertActionGroup("actionGroupId1", null), + new ActivityLogAlertActionGroup("actionGroupId2", null) + }; + + _cmdlet.ExecuteCmdlet(); + + Func verify = metricAlert => + { + Assert.Contains(_cmdlet.ActionGroup[0].ActionGroupId, metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Contains(_cmdlet.ActionGroup[1].ActionGroupId, metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Contains(_cmdlet.TargetResourceScope[0], metricAlert.Scopes); + Assert.Contains(_cmdlet.TargetResourceScope[1], metricAlert.Scopes); + return true; + }; + + this._insightsMetricAlertsOperationsMock.Verify(o => o.CreateOrUpdateWithHttpMessagesAsync(It.IsAny(), It.IsAny(), It.Is(r => verify(r)), It.IsAny>>(), + It.IsAny()), Times.Once); + } + + private void PopulateCmdletDefaultParameters() + { + // Setting required parameter + _cmdlet.Name = "AlertRule"; + _cmdlet.ResourceGroupName = "Name"; + _cmdlet.WindowSize = new TimeSpan(0, 5, 0); + _cmdlet.Frequency = new TimeSpan(0, 5, 0); + _cmdlet.Severity = 4; + _cmdlet.Condition = new List() + { + new PSMetricCriteria(new MetricCriteria("name", "metricName", "Average", "GreaterThan", 12)) + }; + } + } +} diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs index e0efc1faf3c8..e0289093dce9 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs @@ -106,6 +106,13 @@ public void TestAddAzureRmMetricAlertRuleV2() TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAddAzureRmMetricAlertRuleV2WithActionGroupId() + { + TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2-ActionGroupId"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAddAzureRmDynamicMetricAlertRuleV2() diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 index bb6b3f36967b..c781e2dde154 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 @@ -323,6 +323,47 @@ function Test-AddAzureRmMetricAlertRuleV2 <# .SYNOPSIS +Tests adding a GenV2 metric alert rule with action group id. +#> +function Test-AddAzureRmMetricAlertRuleV2-ActionGroupId +{ + # Setup + $sub = Get-AzContext + $subscription = $sub.subscription.subscriptionId + $rgname = Get-ResourceGroupName + $location =Get-ProviderLocation ResourceManagement + $resourceName = Get-ResourceName + $ruleName = Get-ResourceName + $actionGroupName = Get-ResourceName + $targetResourceId = '/subscriptions/'+$subscription+'/resourceGroups/'+$rgname+'/providers/Microsoft.Storage/storageAccounts/'+$resourceName + New-AzResourceGroup -Name $rgname -Location $location -Force + New-AzStorageAccount -ResourceGroupName $rgname -Name $resourceName -Location $location -Type Standard_GRS + $email = New-AzActionGroupReceiver -Name 'user1' -EmailReceiver -EmailAddress 'user1@example.com' + $NewActionGroup1 = Set-AzureRmActionGroup -Name $actionGroupName -ResourceGroup $rgname -ShortName ASTG -Receiver $email + $NewActionGroup2 = Set-AzureRmActionGroup -Name $actionGroupName -ResourceGroup $rgname -ShortName ASTG -Receiver $email + $actionGroup1 = New-AzActionGroup -ActionGroupId $NewActionGroup1.Id + $condition = New-AzMetricAlertRuleV2Criteria -MetricName "UsedCapacity" -Operator GreaterThan -Threshold 8 -TimeAggregation Average + try + { + # Test - cannot create metric alert with action group id and action group + Assert-Throws { Add-AzMetricAlertRuleV2 -Name $ruleName -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -ActionGroup $actionGroup1 -ActionGroupId $NewActionGroup1.Id, $NewActionGroup1.Id -Severity 3 } "Parameter set cannot be resolved using the specified named parameters. One or more parameters issued cannot be used together or an insufficient number of parameters were provided." + + # Test - create metric alert by action group id + $actual = Add-AzMetricAlertRuleV2 -Name $ruleName -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -ActionGroupId $NewActionGroup1.Id, $NewActionGroup2.Id -Severity 3 + Assert-AreEqual $actual.Name $ruleName + } + finally + { + # Cleanup + Remove-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleName + Remove-AzActionGroup -ResourceGroupName $rgname -Name $actionGroupName + Remove-AzureRmStorageAccount -ResourceGroupName $rgName -Name $resourceName + Remove-AzResourceGroup -Name $rgname -Force + } +} + + <# +.SYNOPSIS Tests adding a GenV2 dyanmic metric alert rule. #> function Test-AddAzureRmMetricAlertRuleV2-DynamicThreshold diff --git a/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json new file mode 100644 index 000000000000..aa06610085b9 --- /dev/null +++ b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json @@ -0,0 +1,957 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps1722?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzMTcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12351748-f5b4-4a45-acef-9b1f1f48b17d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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": [ + "17ae832f-797d-471f-b7de-c3ee2da27f43" + ], + "x-ms-correlation-request-id": [ + "17ae832f-797d-471f-b7de-c3ee2da27f43" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154720Z:17ae832f-797d-471f-b7de-c3ee2da27f43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:20 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722\",\r\n \"name\": \"ps1722\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNzk2OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d34611d0-1b02-4610-b233-cd3f7d1ddb23" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/faab6ad2-7dc4-4cb9-93e7-58a7cd06a740?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "faab6ad2-7dc4-4cb9-93e7-58a7cd06a740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "367e8644-4b9a-44fa-bb02-ff97592f7960" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154726Z:367e8644-4b9a-44fa-bb02-ff97592f7960" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:25 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/faab6ad2-7dc4-4cb9-93e7-58a7cd06a740?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9mYWFiNmFkMi03ZGM0LTRjYjktOTNlNy01OGE3Y2QwNmE3NDA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "72d2292e-3eb9-4075-8a73-9aeac2840e51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "93be39f1-e3ae-408c-bbab-7a1bd536497e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154743Z:93be39f1-e3ae-408c-bbab-7a1bd536497e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:43 GMT" + ], + "Content-Length": [ + "1074" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969\",\r\n \"name\": \"ps7969\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-04T15:47:25.5743844Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-04T15:47:25.5743844Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-04T15:47:25.5118825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps7969.blob.core.windows.net/\",\r\n \"queue\": \"https://ps7969.queue.core.windows.net/\",\r\n \"table\": \"https://ps7969.table.core.windows.net/\",\r\n \"file\": \"https://ps7969.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczQ0MjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dad0dd17-19da-42c0-bc92-7009b3b5e482" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "541" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c53bf024-7c95-4094-b579-2f320f22308d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d13fd078-cc58-4ff3-afb0-e3815190a3d8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154749Z:d13fd078-cc58-4ff3-afb0-e3815190a3d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:49 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps4420\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczQ0MjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c47d7448-5028-48c2-af06-453aa9b162c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "541" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8c884d2-496c-40bd-9586-40826e1e3aeb" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "13a9f552-2f8b-48f9-811b-ade7f5c3790b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154750Z:13a9f552-2f8b-48f9-811b-ade7f5c3790b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:49 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps4420\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Insights/metricAlerts/ps5417?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczU0MTc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdb209ea-cf09-4655-85e8-c3f5b8a42830" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1169" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b94a5d0f-209f-461f-9d57-671dfa02457f" + ], + "api-supported-versions": [ + "2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "b94a5d0f-209f-461f-9d57-671dfa02457f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154754Z:b94a5d0f-209f-461f-9d57-671dfa02457f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:54 GMT" + ], + "Content-Length": [ + "1526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps5417\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Insights/metricAlerts/ps5417\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Insights/metricAlerts/ps5417?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczU0MTc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b2429ab-e9b0-4e66-882d-c19375ea596c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fb243557-eaf5-4e88-9fb0-43997f9ce93b" + ], + "api-supported-versions": [ + "2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "fb243557-eaf5-4e88-9fb0-43997f9ce93b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154757Z:fb243557-eaf5-4e88-9fb0-43997f9ce93b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczQ0MjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35286a10-1d79-43f5-86c5-88328ceea150" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78f2f084-f4e9-480e-8182-b44655c52beb" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "f5e97ca0-8d01-4814-8b39-0c52c0f76189" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154759Z:f5e97ca0-8d01-4814-8b39-0c52c0f76189" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:47:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNzk2OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9eced379-a059-460b-88ab-e6f51a3ec14e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b280f0a9-e2e3-48f4-aabd-838fa654e7c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f9b49682-bd13-4c28-b8b9-7d6a7dc50d9f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154802Z:f9b49682-bd13-4c28-b8b9-7d6a7dc50d9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:48:01 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps1722?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzMTcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18f326df-b81a-45c8-b968-868a2c2d7e87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "b54feb1e-2246-4b96-8082-9eeef139ca21" + ], + "x-ms-correlation-request-id": [ + "b54feb1e-2246-4b96-8082-9eeef139ca21" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154804Z:b54feb1e-2246-4b96-8082-9eeef139ca21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:48:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "575442b8-8a34-41b5-afa3-fe4ba6aa26f9" + ], + "x-ms-correlation-request-id": [ + "575442b8-8a34-41b5-afa3-fe4ba6aa26f9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154820Z:575442b8-8a34-41b5-afa3-fe4ba6aa26f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:48:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "cfa169a5-f052-4cbf-919c-77cc9b9d6737" + ], + "x-ms-correlation-request-id": [ + "cfa169a5-f052-4cbf-919c-77cc9b9d6737" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154835Z:cfa169a5-f052-4cbf-919c-77cc9b9d6737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:48:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "849b8562-f0ec-421f-a85d-c597459bb9da" + ], + "x-ms-correlation-request-id": [ + "849b8562-f0ec-421f-a85d-c597459bb9da" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154850Z:849b8562-f0ec-421f-a85d-c597459bb9da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:48:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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": [ + "11992" + ], + "x-ms-request-id": [ + "111d016e-ee30-4a21-9ef3-32cf8c03476a" + ], + "x-ms-correlation-request-id": [ + "111d016e-ee30-4a21-9ef3-32cf8c03476a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154906Z:111d016e-ee30-4a21-9ef3-32cf8c03476a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:49:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "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": [ + "11991" + ], + "x-ms-request-id": [ + "1667a77f-63ec-43d6-86e5-3be73079b898" + ], + "x-ms-correlation-request-id": [ + "1667a77f-63ec-43d6-86e5-3be73079b898" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200204T154906Z:1667a77f-63ec-43d6-86e5-3be73079b898" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Feb 2020 15:49:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AddAzureRmMetricAlertRuleV2-ActionGroupId": [ + "ps1722", + "ps7969", + "ps5417", + "ps4420" + ] + }, + "Variables": { + "SubscriptionId": "11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3" + } +} \ No newline at end of file diff --git a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs index 149c6e073311..57ff60878d00 100644 --- a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs +++ b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs @@ -26,11 +26,13 @@ namespace Microsoft.Azure.Commands.Insights.Alerts /// /// Add a GenV2 Metric Alert rule /// - [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MetricAlertRuleV2", DefaultParameterSetName = "CreateAlertByResourceId", SupportsShouldProcess = true), OutputType(typeof(PSMetricAlertRuleV2))] + [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MetricAlertRuleV2", DefaultParameterSetName = CreateAlertByResourceIdAndActionGroup, SupportsShouldProcess = true), OutputType(typeof(PSMetricAlertRuleV2))] public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase { - const string CreateAlertByResourceId = "CreateAlertByResourceId"; - const string CreateAlertByScopes = "CreateAlertByScopes"; + const string CreateAlertByResourceIdAndActionGroup = "CreateAlertByResourceIdAndActionGroup"; + const string CreateAlertByScopesAndActionGroup = "CreateAlertByScopesAndActionGroup"; + const string CreateAlertByResourceIdAndActionGroupId = "CreateAlertByResourceIdAndActionGroupId"; + const string CreateAlertByScopesAndActionGroupId = "CreateAlertByScopesAndActionGroupId"; /// /// Gets or sets Name parameter of the cmdlet @@ -64,14 +66,16 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the TargetResourceId parameter /// - [Parameter(ParameterSetName = CreateAlertByResourceId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] + [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] + [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] [ValidateNotNullOrEmpty] public string TargetResourceId { get; set; } /// /// Gets or sets the TargetResourceScope parameter /// - [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] [ValidateNotNullOrEmpty] [Alias("Scopes")] public string[] TargetResourceScope { get; set; } @@ -79,14 +83,16 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the TargetResourceType parameter /// - [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] [ValidateNotNullOrEmpty] public string TargetResourceType { get; set; } /// /// Gets or sets the TargetResourceRegion parameter /// - [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] [ValidateNotNullOrEmpty] public string TargetResourceRegion { get; set; } @@ -99,13 +105,20 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase public List Condition { get; set; } /// - /// Gets or sets the ActionGroup parameter + /// Gets or sets the ActionGroup parameter /// - [Parameter(Mandatory = true, ValueFromPipeline = true,ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] - [ValidateNotNullOrEmpty] + [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] [Alias("Actions")] public ActivityLogAlertActionGroup[] ActionGroup { get; set; } + /// + /// Gets or sets the ActionGroupId parameter + /// + [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] + public string[] ActionGroupId { get; set; } + /// /// Gets or sets the DisableRule flag. /// Using DisableRule to make false the default, i.e. if the user does not include it in the call, the rule will be enabled. @@ -132,6 +145,17 @@ protected override void ProcessRecordInternal() this.TargetResourceScope = this.TargetResourceScope ?? new string[] { this.TargetResourceId }; } + var actions = new List(); + if (this.ActionGroup != null) + { + actions.AddRange(this.ActionGroup.Select(actionGroup => new MetricAlertAction(actionGroupId: actionGroup.ActionGroupId, webhookProperties: actionGroup.WebhookProperties))); + } + + if (this.ActionGroupId != null) + { + actions.AddRange(this.ActionGroupId.Select(actionGroupId => new MetricAlertAction(actionGroupId: actionGroupId))); + } + if (this.TargetResourceScope == null)//Single Resource Metric Alert Rule { var scopes = new List(); @@ -145,11 +169,6 @@ protected override void ProcessRecordInternal() var criteria = new MetricAlertSingleResourceMultipleMetricCriteria( allOf: metricCriteria ); - var actions = new List(); - foreach (var actionGroup in this.ActionGroup) - { - actions.Add(new MetricAlertAction(actionGroupId: actionGroup.ActionGroupId, webhookProperties: actionGroup.WebhookProperties)); - } var metricAlertResource = new MetricAlertResource( description: this.Description ?? Utilities.GetDefaultDescription("new Metric alert rule"), severity: this.Severity, @@ -189,11 +208,6 @@ protected override void ProcessRecordInternal() MetricAlertMultipleResourceMultipleMetricCriteria metricCriteria = new MetricAlertMultipleResourceMultipleMetricCriteria( allOf: multiMetricCriteria ); - var actions = new List(); - foreach (var actionGroup in this.ActionGroup) - { - actions.Add(new MetricAlertAction(actionGroupId: actionGroup.ActionGroupId, webhookProperties: actionGroup.WebhookProperties)); - } var metricAlertResource = new MetricAlertResource( description: this.Description ?? Utilities.GetDefaultDescription("New multi resource Metric alert rule"), severity: this.Severity, diff --git a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md index 7403ac77c9ca..c43d14bd658d 100644 --- a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md +++ b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md @@ -12,21 +12,39 @@ Adds or updates a V2 (non-classic) metric-based alert rule. ## SYNTAX -### CreateAlertByResourceId (Default) +### CreateAlertByResourceIdAndActionGroup (Default) ``` Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceId -Condition - -ActionGroup [-DisableRule] [-Description ] -Severity + [-ActionGroup ] [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### CreateAlertByScopes +### CreateAlertByResourceIdAndActionGroupId +``` +Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency + -TargetResourceId + -Condition + [-ActionGroupId ] [-DisableRule] [-Description ] -Severity + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### CreateAlertByScopesAndActionGroup +``` +Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency + -TargetResourceScope -TargetResourceType -TargetResourceRegion + -Condition + [-ActionGroup ] [-DisableRule] [-Description ] -Severity + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### CreateAlertByScopesAndActionGroupId ``` Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceScope -TargetResourceType -TargetResourceRegion -Condition - -ActionGroup [-DisableRule] [-Description ] -Severity + [-ActionGroupId ] [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -149,13 +167,28 @@ The Action Group for rule ```yaml Type: Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[] -Parameter Sets: (All) +Parameter Sets: CreateAlertByResourceIdAndActionGroup, CreateAlertByScopesAndActionGroup Aliases: Actions -Required: True +Required: False Position: Named Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ActionGroupId +The Action Group id for rule + +```yaml +Type: System.String[] +Parameter Sets: CreateAlertByResourceIdAndActionGroupId, CreateAlertByScopesAndActionGroupId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` @@ -284,7 +317,7 @@ The target resource id for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByResourceId +Parameter Sets: CreateAlertByResourceIdAndActionGroup, CreateAlertByResourceIdAndActionGroupId Aliases: Required: True @@ -299,7 +332,7 @@ The target resource region for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopes +Parameter Sets: CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId Aliases: Required: True @@ -314,7 +347,7 @@ The target resource scope for rule ```yaml Type: System.String[] -Parameter Sets: CreateAlertByScopes +Parameter Sets: CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId Aliases: Scopes Required: True @@ -329,7 +362,7 @@ The target resource type for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopes +Parameter Sets: CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId Aliases: Required: True diff --git a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv index bdc643d7cff4..1e65b4a0f174 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv @@ -3,3 +3,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","3030","The generic type for 'parameter Condition' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria]' to 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]'. ","Change the generic type for 'parameter Condition' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria]'." "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","1020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer has output type 'Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria'.","Make cmdlet 'New-AzMetricAlertRuleV2Criteria' return type 'Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria'." "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","2020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer supports the type 'System.String' for parameter 'DynamicThreshold'.","Change the type for parameter 'DynamicThreshold' back to 'System.String'." +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Add-AzMetricAlertRuleV2'." +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set 'CreateAlertByResourceId' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set 'CreateAlertByResourceId' back to cmdlet 'Add-AzMetricAlertRuleV2'." +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set 'CreateAlertByScopes' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set 'CreateAlertByScopes' back to cmdlet 'Add-AzMetricAlertRuleV2'." \ No newline at end of file From 2edcb9062d30be40706de5433fb710a81462a130 Mon Sep 17 00:00:00 2001 From: Sivan Guetta Date: Thu, 6 Feb 2020 15:29:24 +0200 Subject: [PATCH 21/44] Update ChangeLog.Md --- src/Monitor/Monitor/ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index fbde6391c3cf..0f2948dfcb4b 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 ## Upcoming Release +* A new parameter called ActionGroupId was added to New-AzMetricAlertRuleV2 command. + - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). ## Version 1.5.0 * Update references in .psd1 to use relative path From 1daa987ff49463dce385a1b75f64e0c6e9855318 Mon Sep 17 00:00:00 2001 From: Diego Gavinowich Date: Thu, 6 Feb 2020 11:53:31 -0800 Subject: [PATCH 22/44] Update changelog --- .../ScenarioTests/WebApplicationFireWallPolicyTests.ps1 | 2 +- src/FrontDoor/FrontDoor/ChangeLog.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 index 9b4d28ddb30e..b03a39332570 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 @@ -122,7 +122,7 @@ WAF managed rule set definitions retrieval #> function Test-ManagedRuleSetDefinition { - $definitions = Get-AzFrontDoorWafManagedRuleSetDefinition | sort -Property RuleSetType,RuleSetVersion + $definitions = Get-AzFrontDoorWafManagedRuleSetDefinition Assert-AreEqual $definitions.Count 4 Assert-AreEqual $definitions[0].RuleSetType "BotProtection" Assert-AreEqual $definitions[0].RuleSetVersion "preview-0.1" diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index 9e1cf94798e8..45a75fdc936c 100644 --- a/src/FrontDoor/FrontDoor/ChangeLog.md +++ b/src/FrontDoor/FrontDoor/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Add cmdlet to get managed rule definitions that can be used in WAF ## Version 1.3.0 * Update references in .psd1 to use relative path From 0080ad8264f86b14d446f4e9ee52acad1039b611 Mon Sep 17 00:00:00 2001 From: Diego Gavinowich Date: Thu, 6 Feb 2020 12:26:13 -0800 Subject: [PATCH 23/44] Fix test --- .../WebApplicationFireWallPolicyTests.ps1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 index b03a39332570..ffca7a6aaf4d 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 @@ -124,19 +124,19 @@ function Test-ManagedRuleSetDefinition { $definitions = Get-AzFrontDoorWafManagedRuleSetDefinition Assert-AreEqual $definitions.Count 4 - Assert-AreEqual $definitions[0].RuleSetType "BotProtection" - Assert-AreEqual $definitions[0].RuleSetVersion "preview-0.1" - Assert-AreEqual $definitions[0].RuleGroups.Count 1 + Assert-AreEqual $definitions[0].RuleSetType "DefaultRuleSet" + Assert-AreEqual $definitions[0].RuleSetVersion "1.0" + Assert-AreEqual $definitions[0].RuleGroups.Count 9 - Assert-AreEqual $definitions[1].RuleSetType "DefaultRuleSet" + Assert-AreEqual $definitions[1].RuleSetType "Microsoft_BotManagerRuleSet" Assert-AreEqual $definitions[1].RuleSetVersion "1.0" - Assert-AreEqual $definitions[1].RuleGroups.Count 9 + Assert-AreEqual $definitions[1].RuleGroups.Count 3 Assert-AreEqual $definitions[2].RuleSetType "DefaultRuleSet" Assert-AreEqual $definitions[2].RuleSetVersion "preview-0.1" Assert-AreEqual $definitions[2].RuleGroups.Count 8 - Assert-AreEqual $definitions[3].RuleSetType "Microsoft_BotManagerRuleSet" - Assert-AreEqual $definitions[3].RuleSetVersion "1.0" - Assert-AreEqual $definitions[3].RuleGroups.Count 3 + Assert-AreEqual $definitions[3].RuleSetType "BotProtection" + Assert-AreEqual $definitions[3].RuleSetVersion "preview-0.1" + Assert-AreEqual $definitions[3].RuleGroups.Count 1 } From 82c268392916644889d8ea550953a75d5758b24e Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Mon, 3 Feb 2020 10:36:32 -0800 Subject: [PATCH 24/44] Re-record the test session --- .../TestAzureIotHubDeviceLifecycle.json | 531 ++++++++---------- .../DataPlane/Device/AddAzIotHubDevice.cs | 10 +- .../DataPlane/Device/GetAzIotHubDevice.cs | 6 +- .../DataPlane/Device/RemoveAzIotHubDevice.cs | 6 +- .../DataPlane/Device/SetAzIotHubDevice.cs | 24 +- .../IotHub/Properties/Resources.Designer.cs | 14 +- src/IotHub/IotHub/Properties/Resources.resx | 4 +- src/IotHub/IotHub/help/Add-AzIotHubDevice.md | 75 ++- src/IotHub/IotHub/help/Az.IotHub.md | 10 +- src/IotHub/IotHub/help/Get-AzIotHubDevice.md | 19 +- .../IotHub/help/Remove-AzIotHubDevice.md | 25 +- src/IotHub/IotHub/help/Set-AzIotHubDevice.md | 71 ++- .../Az.IotHub/MissingAssemblies.csv | 2 +- 13 files changed, 398 insertions(+), 399 deletions(-) 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 index 38b84822245a..4d32654521b9 100644 --- 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 @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1712553-496c-4b35-aa5f-f224ede18fd3" + "3c870010-a4b7-4177-bd83-dd0aeddd4a9b" ], "Accept-Language": [ "en-US" @@ -30,13 +30,13 @@ "11995" ], "x-ms-request-id": [ - "bf406551-177a-4be9-9f24-b237b86cd497" + "022e1f9d-513f-4467-b706-3ec9f90a6032" ], "x-ms-correlation-request-id": [ - "bf406551-177a-4be9-9f24-b237b86cd497" + "022e1f9d-513f-4467-b706-3ec9f90a6032" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203628Z:bf406551-177a-4be9-9f24-b237b86cd497" + "WESTUS:20200206T235906Z:022e1f9d-513f-4467-b706-3ec9f90a6032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:36:28 GMT" + "Thu, 06 Feb 2020 23:59:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,20 +54,20 @@ "-1" ], "Content-Length": [ - "5555" + "5648" ] }, - "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}", + "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\",\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/ps1082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMTA4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps4537?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNDUzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "907ce516-49b3-4e3a-a71c-40104b442810" + "9eb84a71-a74e-452b-9ea1-76abb9505120" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "5e7b2398-3470-4aa6-bf07-d369722036ef" + "8907e2e9-cbd7-4dce-ba59-97b2eeb9b843" ], "x-ms-correlation-request-id": [ - "5e7b2398-3470-4aa6-bf07-d369722036ef" + "8907e2e9-cbd7-4dce-ba59-97b2eeb9b843" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203629Z:5e7b2398-3470-4aa6-bf07-d369722036ef" + "WESTUS:20200206T235907Z:8907e2e9-cbd7-4dce-ba59-97b2eeb9b843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:36:29 GMT" + "Thu, 06 Feb 2020 23:59:07 GMT" ], "Content-Length": [ "165" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082\",\r\n \"name\": \"ps1082\",\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/ps4537\",\r\n \"name\": \"ps4537\",\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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/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": [ - "f11e30ba-66e4-4bf0-940d-c4991490d4f8" + "ed80fdc3-4437-446e-b37a-e6924f4a5708" ], "Accept-Language": [ "en-US" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "e10b12b4-7dd7-421f-8123-d9e364f1f779" + "9ec18fc6-6810-4012-b138-34e317ce36b1" ], "x-ms-correlation-request-id": [ - "e10b12b4-7dd7-421f-8123-d9e364f1f779" + "9ec18fc6-6810-4012-b138-34e317ce36b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203646Z:e10b12b4-7dd7-421f-8123-d9e364f1f779" + "WESTUS:20200206T235927Z:9ec18fc6-6810-4012-b138-34e317ce36b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:36:46 GMT" + "Thu, 06 Feb 2020 23:59:26 GMT" ], "Content-Length": [ "619" @@ -195,12 +195,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\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/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJWak1HWXlZbVF0Wm1JME15MDBNMkpqTFdFeU1UWXRPRE01WTJRM05HSmpORE01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "4a0621a9-3e60-4c54-9267-e55d762f8cfb" + "6c5f7d76-183f-422d-9c51-4f7430c278f1" ], "x-ms-correlation-request-id": [ - "4a0621a9-3e60-4c54-9267-e55d762f8cfb" + "6c5f7d76-183f-422d-9c51-4f7430c278f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203717Z:4a0621a9-3e60-4c54-9267-e55d762f8cfb" + "WESTUS:20200206T235957Z:6c5f7d76-183f-422d-9c51-4f7430c278f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:37:16 GMT" + "Thu, 06 Feb 2020 23:59:56 GMT" ], "Content-Length": [ "20" @@ -256,8 +256,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJWak1HWXlZbVF0Wm1JME15MDBNMkpqTFdFeU1UWXRPRE01WTJRM05HSmpORE01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -279,16 +279,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "95e38fe6-1fd1-44e9-abc5-4cf5ae4bfa0d" + "363d4542-3d6d-41a5-a29c-cd0c230eef8a" ], "x-ms-correlation-request-id": [ - "95e38fe6-1fd1-44e9-abc5-4cf5ae4bfa0d" + "363d4542-3d6d-41a5-a29c-cd0c230eef8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203747Z:95e38fe6-1fd1-44e9-abc5-4cf5ae4bfa0d" + "WESTUS:20200207T000027Z:363d4542-3d6d-41a5-a29c-cd0c230eef8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:37:46 GMT" + "Fri, 07 Feb 2020 00:00:26 GMT" ], "Content-Length": [ "20" @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJWak1HWXlZbVF0Wm1JME15MDBNMkpqTFdFeU1UWXRPRE01WTJRM05HSmpORE01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -336,73 +336,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "9f19a298-5adb-40ab-b3db-83cc0eead2bf" - ], - "x-ms-correlation-request-id": [ - "9f19a298-5adb-40ab-b3db-83cc0eead2bf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200127T203817Z:9f19a298-5adb-40ab-b3db-83cc0eead2bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 27 Jan 2020 20:38:17 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/b3NfaWhfNjIzNmNhYjAtZGFhMS00MGQ1LWIyNGMtYmFlZGQyOGI3YjMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpJek5tTmhZakF0WkdGaE1TMDBNR1ExTFdJeU5HTXRZbUZsWkdReU9HSTNZak16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "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": [ - "11993" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11996" ], "x-ms-request-id": [ - "0ac2af70-46ac-465d-ada8-9f5214da2cd9" + "ba518fe9-fb35-43bd-88ba-e4004c0465ac" ], "x-ms-correlation-request-id": [ - "0ac2af70-46ac-465d-ada8-9f5214da2cd9" + "ba518fe9-fb35-43bd-88ba-e4004c0465ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203847Z:0ac2af70-46ac-465d-ada8-9f5214da2cd9" + "WESTUS:20200207T000057Z:ba518fe9-fb35-43bd-88ba-e4004c0465ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +354,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:47 GMT" + "Fri, 07 Feb 2020 00:00:57 GMT" ], "Content-Length": [ "22" @@ -427,8 +370,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -450,16 +393,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-request-id": [ - "b82cb846-2b9e-47cc-8537-f4ac51a05ede" + "ad38e7bf-a707-41e6-9bd9-0878e027caa5" ], "x-ms-correlation-request-id": [ - "b82cb846-2b9e-47cc-8537-f4ac51a05ede" + "ad38e7bf-a707-41e6-9bd9-0878e027caa5" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203848Z:b82cb846-2b9e-47cc-8537-f4ac51a05ede" + "WESTUS:20200207T000058Z:ad38e7bf-a707-41e6-9bd9-0878e027caa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -468,7 +411,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:47 GMT" + "Fri, 07 Feb 2020 00:00:58 GMT" ], "Content-Length": [ "1460" @@ -480,17 +423,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "681ae799-0b47-46d9-b9fb-c391459f6cee" + "9cfaf16e-9d80-4284-9e13-0e493db0c4a6" ], "Accept-Language": [ "en-US" @@ -513,16 +456,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-request-id": [ - "5767b0c7-5c54-4515-9760-a6d0fd2e3569" + "7d7b1743-b088-4211-8e09-e90728babb2d" ], "x-ms-correlation-request-id": [ - "5767b0c7-5c54-4515-9760-a6d0fd2e3569" + "7d7b1743-b088-4211-8e09-e90728babb2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203848Z:5767b0c7-5c54-4515-9760-a6d0fd2e3569" + "WESTUS:20200207T000058Z:7d7b1743-b088-4211-8e09-e90728babb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,7 +474,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:47 GMT" + "Fri, 07 Feb 2020 00:00:58 GMT" ], "Content-Length": [ "1460" @@ -543,17 +486,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd12692f-0f8b-44b8-b0df-4a723679c8f0" + "eab1e707-de6d-42ba-9d65-320c4fa32ec5" ], "Accept-Language": [ "en-US" @@ -576,16 +519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-request-id": [ - "0942329e-3636-4e51-ac44-ca092ab3ac6d" + "753e5d4b-0de0-4200-a4e5-cc9eb276a685" ], "x-ms-correlation-request-id": [ - "0942329e-3636-4e51-ac44-ca092ab3ac6d" + "753e5d4b-0de0-4200-a4e5-cc9eb276a685" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203849Z:0942329e-3636-4e51-ac44-ca092ab3ac6d" + "WESTUS:20200207T000059Z:753e5d4b-0de0-4200-a4e5-cc9eb276a685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594,7 +537,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:48 GMT" + "Fri, 07 Feb 2020 00:00:59 GMT" ], "Content-Length": [ "1460" @@ -606,17 +549,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc3de98b-809a-43ce-b9f5-f61e5021d553" + "0500d52a-ac19-40f4-be70-383f29621330" ], "Accept-Language": [ "en-US" @@ -639,16 +582,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "b97fbb5f-0c8b-46ee-907f-c5fbb36f6b0e" + "553db112-46af-4ccc-b573-d8f26e9ea4a5" ], "x-ms-correlation-request-id": [ - "b97fbb5f-0c8b-46ee-907f-c5fbb36f6b0e" + "553db112-46af-4ccc-b573-d8f26e9ea4a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203850Z:b97fbb5f-0c8b-46ee-907f-c5fbb36f6b0e" + "WESTUS:20200207T000100Z:553db112-46af-4ccc-b573-d8f26e9ea4a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,7 +600,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:49 GMT" + "Fri, 07 Feb 2020 00:01:00 GMT" ], "Content-Length": [ "1460" @@ -669,17 +612,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a35f2da-60e2-48bf-95e1-9aa3ff7c5682" + "2d434663-629e-428d-9870-7e049cad8188" ], "Accept-Language": [ "en-US" @@ -702,16 +645,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-request-id": [ - "4483e613-ae0d-43a8-8af3-ec0710c343a4" + "1007f4f6-3510-4338-8223-cfdbd33e030f" ], "x-ms-correlation-request-id": [ - "4483e613-ae0d-43a8-8af3-ec0710c343a4" + "1007f4f6-3510-4338-8223-cfdbd33e030f" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203851Z:4483e613-ae0d-43a8-8af3-ec0710c343a4" + "WESTUS:20200207T000101Z:1007f4f6-3510-4338-8223-cfdbd33e030f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,7 +663,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:50 GMT" + "Fri, 07 Feb 2020 00:01:00 GMT" ], "Content-Length": [ "1460" @@ -732,17 +675,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc11e43-0bbd-424b-a59f-a8aa3932ba47" + "375fbef9-e069-4d1c-ab81-fdc7edf3f2ca" ], "Accept-Language": [ "en-US" @@ -765,16 +708,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-request-id": [ - "a95c6276-2ebc-4fa0-a443-b451ac282e10" + "140c93f2-4054-4304-8eed-00555e36000b" ], "x-ms-correlation-request-id": [ - "a95c6276-2ebc-4fa0-a443-b451ac282e10" + "140c93f2-4054-4304-8eed-00555e36000b" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203852Z:a95c6276-2ebc-4fa0-a443-b451ac282e10" + "WESTUS:20200207T000101Z:140c93f2-4054-4304-8eed-00555e36000b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,7 +726,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:51 GMT" + "Fri, 07 Feb 2020 00:01:01 GMT" ], "Content-Length": [ "1460" @@ -795,17 +738,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36d51b0d-f5c7-4170-9988-eb12042ae107" + "d1a8a10b-1bce-4320-be07-ba53f3a7a827" ], "Accept-Language": [ "en-US" @@ -828,16 +771,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-request-id": [ - "d8918a91-2b11-4508-8771-f7005254bbed" + "11a9ad58-d18e-47e2-94c3-d7d0fb11090c" ], "x-ms-correlation-request-id": [ - "d8918a91-2b11-4508-8771-f7005254bbed" + "11a9ad58-d18e-47e2-94c3-d7d0fb11090c" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203853Z:d8918a91-2b11-4508-8771-f7005254bbed" + "WESTUS:20200207T000102Z:11a9ad58-d18e-47e2-94c3-d7d0fb11090c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,7 +789,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:52 GMT" + "Fri, 07 Feb 2020 00:01:02 GMT" ], "Content-Length": [ "1460" @@ -858,17 +801,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02ef9291-13a3-48aa-8968-f5a506368174" + "281349d3-d011-4774-8e4b-0521c0c94f49" ], "Accept-Language": [ "en-US" @@ -891,16 +834,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11988" ], "x-ms-request-id": [ - "763637b6-ade8-4eb1-a368-93981e76e4d2" + "cd25a49e-0756-4520-9e22-432f66afd3ce" ], "x-ms-correlation-request-id": [ - "763637b6-ade8-4eb1-a368-93981e76e4d2" + "cd25a49e-0756-4520-9e22-432f66afd3ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203854Z:763637b6-ade8-4eb1-a368-93981e76e4d2" + "WESTUS:20200207T000103Z:cd25a49e-0756-4520-9e22-432f66afd3ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,7 +852,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:53 GMT" + "Fri, 07 Feb 2020 00:01:03 GMT" ], "Content-Length": [ "1460" @@ -921,17 +864,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0566a746-5978-4f6f-8492-bb6a74d95bc0" + "fd2d1e6b-6ef9-4a7f-a345-b7525357bbd4" ], "Accept-Language": [ "en-US" @@ -954,16 +897,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11987" ], "x-ms-request-id": [ - "d1b7dc46-786e-4512-9797-c46a93ffcc46" + "4f588b97-49d6-4846-a970-04a5abb18a22" ], "x-ms-correlation-request-id": [ - "d1b7dc46-786e-4512-9797-c46a93ffcc46" + "4f588b97-49d6-4846-a970-04a5abb18a22" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203854Z:d1b7dc46-786e-4512-9797-c46a93ffcc46" + "WESTUS:20200207T000104Z:4f588b97-49d6-4846-a970-04a5abb18a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:54 GMT" + "Fri, 07 Feb 2020 00:01:04 GMT" ], "Content-Length": [ "1460" @@ -984,17 +927,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7353fbc6-ba60-4989-ba0d-911f0d699983" + "e1e2db73-868c-4ee9-bf87-de9b73dbd5da" ], "Accept-Language": [ "en-US" @@ -1017,16 +960,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11986" ], "x-ms-request-id": [ - "17eee559-dfbb-4226-b5a0-5ea9e8faa66b" + "f58af972-fc8f-40a5-9a6d-762d4b7e6392" ], "x-ms-correlation-request-id": [ - "17eee559-dfbb-4226-b5a0-5ea9e8faa66b" + "f58af972-fc8f-40a5-9a6d-762d4b7e6392" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203855Z:17eee559-dfbb-4226-b5a0-5ea9e8faa66b" + "WESTUS:20200207T000105Z:f58af972-fc8f-40a5-9a6d-762d4b7e6392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,7 +978,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:55 GMT" + "Fri, 07 Feb 2020 00:01:05 GMT" ], "Content-Length": [ "1460" @@ -1047,17 +990,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34c089e0-fe78-498b-9283-225f08b5e445" + "b8d38c7d-1cd4-45e4-8244-213880350d72" ], "Accept-Language": [ "en-US" @@ -1080,16 +1023,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11985" ], "x-ms-request-id": [ - "b48dba1a-be58-461d-bbc8-da5c0e8d330b" + "e7b632c2-5bae-4da8-93e3-9e3e7663b223" ], "x-ms-correlation-request-id": [ - "b48dba1a-be58-461d-bbc8-da5c0e8d330b" + "e7b632c2-5bae-4da8-93e3-9e3e7663b223" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203856Z:b48dba1a-be58-461d-bbc8-da5c0e8d330b" + "WESTUS:20200207T000105Z:e7b632c2-5bae-4da8-93e3-9e3e7663b223" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1041,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:55 GMT" + "Fri, 07 Feb 2020 00:01:05 GMT" ], "Content-Length": [ "1460" @@ -1110,17 +1053,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7cc8508-5cf2-4e13-8eb0-7a734d5a1dee" + "6a646f40-52d3-47af-b6e9-e74f265f2e85" ], "Accept-Language": [ "en-US" @@ -1143,16 +1086,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11984" ], "x-ms-request-id": [ - "c827d5f2-40d6-48b0-8048-624676d30a09" + "602fdbf7-e7a5-449c-a4f1-c2ec798816e5" ], "x-ms-correlation-request-id": [ - "c827d5f2-40d6-48b0-8048-624676d30a09" + "602fdbf7-e7a5-449c-a4f1-c2ec798816e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203857Z:c827d5f2-40d6-48b0-8048-624676d30a09" + "WESTUS:20200207T000106Z:602fdbf7-e7a5-449c-a4f1-c2ec798816e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,7 +1104,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:56 GMT" + "Fri, 07 Feb 2020 00:01:06 GMT" ], "Content-Length": [ "1460" @@ -1173,17 +1116,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102\",\r\n \"name\": \"ps8102\",\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\": \"ps1082\",\r\n \"etag\": \"AAAAAAsBsj0=\",\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\": \"ps8102.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8102\",\r\n \"endpoint\": \"sb://iothub-ns-ps8102-2838243-a1799ab167.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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9e921ff-5e5f-4f12-826e-4e550207fcd2" + "1ed908c1-f618-43a7-84cb-da1d0ace9e96" ], "Accept-Language": [ "en-US" @@ -1209,13 +1152,13 @@ "1199" ], "x-ms-request-id": [ - "c1b0730c-9d34-444c-8a31-26099624d6e4" + "0b868ede-fd43-456a-8657-54e03ea3b1af" ], "x-ms-correlation-request-id": [ - "c1b0730c-9d34-444c-8a31-26099624d6e4" + "0b868ede-fd43-456a-8657-54e03ea3b1af" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203849Z:c1b0730c-9d34-444c-8a31-26099624d6e4" + "WESTUS:20200207T000059Z:0b868ede-fd43-456a-8657-54e03ea3b1af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,7 +1167,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:48 GMT" + "Fri, 07 Feb 2020 00:00:59 GMT" ], "Content-Length": [ "905" @@ -1236,17 +1179,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "362dc8ca-f810-4bb1-b7e0-49e546a97c52" + "4da64ade-ca05-40a1-8349-47e0e70dcb70" ], "Accept-Language": [ "en-US" @@ -1272,13 +1215,13 @@ "1198" ], "x-ms-request-id": [ - "2d373d11-4add-4746-be5d-ec8014edc276" + "ed295dee-0e8d-4dd1-a048-043bc8c4e060" ], "x-ms-correlation-request-id": [ - "2d373d11-4add-4746-be5d-ec8014edc276" + "ed295dee-0e8d-4dd1-a048-043bc8c4e060" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203850Z:2d373d11-4add-4746-be5d-ec8014edc276" + "WESTUS:20200207T000100Z:ed295dee-0e8d-4dd1-a048-043bc8c4e060" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,7 +1230,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:49 GMT" + "Fri, 07 Feb 2020 00:01:00 GMT" ], "Content-Length": [ "905" @@ -1299,17 +1242,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70537435-5a20-433b-a3fb-61498e3c35ed" + "b4aa7af5-c475-481f-8f2f-b7fc8e5ac699" ], "Accept-Language": [ "en-US" @@ -1335,13 +1278,13 @@ "1197" ], "x-ms-request-id": [ - "2f698753-a3fe-4a80-91fe-c5c8d27f8bde" + "099a4e4c-6a32-4242-9148-948ac03e2f01" ], "x-ms-correlation-request-id": [ - "2f698753-a3fe-4a80-91fe-c5c8d27f8bde" + "099a4e4c-6a32-4242-9148-948ac03e2f01" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203851Z:2f698753-a3fe-4a80-91fe-c5c8d27f8bde" + "WESTUS:20200207T000101Z:099a4e4c-6a32-4242-9148-948ac03e2f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1293,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:50 GMT" + "Fri, 07 Feb 2020 00:01:01 GMT" ], "Content-Length": [ "905" @@ -1362,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1a4295-a9d6-48b8-b8c5-a28c16e6fa40" + "5a6f5c29-c135-4da3-94cc-23528b5fea8c" ], "Accept-Language": [ "en-US" @@ -1398,13 +1341,13 @@ "1196" ], "x-ms-request-id": [ - "0b8efc03-2312-4d04-9775-7e3e25a674f5" + "42728bb9-c877-4510-85f9-58010e3babac" ], "x-ms-correlation-request-id": [ - "0b8efc03-2312-4d04-9775-7e3e25a674f5" + "42728bb9-c877-4510-85f9-58010e3babac" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203852Z:0b8efc03-2312-4d04-9775-7e3e25a674f5" + "WESTUS:20200207T000101Z:42728bb9-c877-4510-85f9-58010e3babac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1413,7 +1356,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:51 GMT" + "Fri, 07 Feb 2020 00:01:01 GMT" ], "Content-Length": [ "905" @@ -1425,17 +1368,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ffad20a-e4fc-4e6e-9592-057a2ba08372" + "a3cdf7f7-ae03-434e-8227-33003f32d74e" ], "Accept-Language": [ "en-US" @@ -1461,13 +1404,13 @@ "1195" ], "x-ms-request-id": [ - "3bd20a10-5039-46c9-9172-6f5c594040ae" + "d17a8795-1c7a-4739-b8d3-290790ad62ff" ], "x-ms-correlation-request-id": [ - "3bd20a10-5039-46c9-9172-6f5c594040ae" + "d17a8795-1c7a-4739-b8d3-290790ad62ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203853Z:3bd20a10-5039-46c9-9172-6f5c594040ae" + "WESTUS:20200207T000102Z:d17a8795-1c7a-4739-b8d3-290790ad62ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1476,7 +1419,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:52 GMT" + "Fri, 07 Feb 2020 00:01:02 GMT" ], "Content-Length": [ "905" @@ -1488,17 +1431,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b2cb894-dc00-4171-afc7-ee91c9292b67" + "48d9e563-d407-4095-abd1-798c4f8ac6ab" ], "Accept-Language": [ "en-US" @@ -1524,13 +1467,13 @@ "1194" ], "x-ms-request-id": [ - "91be9468-d29d-4305-b8e0-b7a88e9cab95" + "65e0fa21-3649-4d32-9d0c-a74449174030" ], "x-ms-correlation-request-id": [ - "91be9468-d29d-4305-b8e0-b7a88e9cab95" + "65e0fa21-3649-4d32-9d0c-a74449174030" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203854Z:91be9468-d29d-4305-b8e0-b7a88e9cab95" + "WESTUS:20200207T000103Z:65e0fa21-3649-4d32-9d0c-a74449174030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,7 +1482,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:53 GMT" + "Fri, 07 Feb 2020 00:01:03 GMT" ], "Content-Length": [ "905" @@ -1551,17 +1494,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "844ade5d-cbde-42e0-aaee-44cd4e156de7" + "c631d808-f067-439a-9422-a496a6c6446f" ], "Accept-Language": [ "en-US" @@ -1587,13 +1530,13 @@ "1193" ], "x-ms-request-id": [ - "f2e49357-36c5-41e6-9628-e147484204d1" + "0dc00a68-8f58-49f4-b234-7b52c473a66f" ], "x-ms-correlation-request-id": [ - "f2e49357-36c5-41e6-9628-e147484204d1" + "0dc00a68-8f58-49f4-b234-7b52c473a66f" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203855Z:f2e49357-36c5-41e6-9628-e147484204d1" + "WESTUS:20200207T000104Z:0dc00a68-8f58-49f4-b234-7b52c473a66f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,7 +1545,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:54 GMT" + "Fri, 07 Feb 2020 00:01:04 GMT" ], "Content-Length": [ "905" @@ -1614,17 +1557,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fc877d3-06fa-4007-9c90-ca7e1b05f6f6" + "54c58a27-5abf-4cd0-ab78-925bafb21e9b" ], "Accept-Language": [ "en-US" @@ -1650,13 +1593,13 @@ "1192" ], "x-ms-request-id": [ - "012a4624-82bf-45e8-a4a5-8a589f3e5f4b" + "1935fc86-d36c-4ec0-949a-4fe578d81906" ], "x-ms-correlation-request-id": [ - "012a4624-82bf-45e8-a4a5-8a589f3e5f4b" + "1935fc86-d36c-4ec0-949a-4fe578d81906" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203856Z:012a4624-82bf-45e8-a4a5-8a589f3e5f4b" + "WESTUS:20200207T000105Z:1935fc86-d36c-4ec0-949a-4fe578d81906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,7 +1608,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:55 GMT" + "Fri, 07 Feb 2020 00:01:05 GMT" ], "Content-Length": [ "905" @@ -1677,17 +1620,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa3d5668-708a-4377-be45-bb0d7cae1b11" + "7cb2b87c-c4e5-4fb2-b197-3075a640e557" ], "Accept-Language": [ "en-US" @@ -1713,13 +1656,13 @@ "1191" ], "x-ms-request-id": [ - "d0cd8ff4-63ea-4635-a005-c2a2bb6f15a7" + "8be9b61e-608e-4918-9f1e-2a5cb892d0af" ], "x-ms-correlation-request-id": [ - "d0cd8ff4-63ea-4635-a005-c2a2bb6f15a7" + "8be9b61e-608e-4918-9f1e-2a5cb892d0af" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203856Z:d0cd8ff4-63ea-4635-a005-c2a2bb6f15a7" + "WESTUS:20200207T000106Z:8be9b61e-608e-4918-9f1e-2a5cb892d0af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,7 +1671,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:55 GMT" + "Fri, 07 Feb 2020 00:01:05 GMT" ], "Content-Length": [ "905" @@ -1740,17 +1683,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1082/providers/Microsoft.Devices/IotHubs/ps8102/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczgxMDIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ef48a7b-6bd9-46c5-a2e3-d26a6c5289f4" + "db56be5f-7078-40b0-9696-5aad50454818" ], "Accept-Language": [ "en-US" @@ -1776,13 +1719,13 @@ "1190" ], "x-ms-request-id": [ - "2f185172-d9cd-47ee-893c-cec0c18bb543" + "0a20744e-4e15-407b-86e4-451f26fc8ef7" ], "x-ms-correlation-request-id": [ - "2f185172-d9cd-47ee-893c-cec0c18bb543" + "0a20744e-4e15-407b-86e4-451f26fc8ef7" ], "x-ms-routing-request-id": [ - "WESTUS:20200127T203857Z:2f185172-d9cd-47ee-893c-cec0c18bb543" + "WESTUS:20200207T000106Z:0a20744e-4e15-407b-86e4-451f26fc8ef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,7 +1734,7 @@ "nosniff" ], "Date": [ - "Mon, 27 Jan 2020 20:38:56 GMT" + "Fri, 07 Feb 2020 00:01:06 GMT" ], "Content-Length": [ "905" @@ -1803,17 +1746,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"zazQ+qKQf79LU9pdWUVMCMfgI/qaJqQIb2XqYlvxNkU=\",\r\n \"secondaryKey\": \"SNZM3+57uo7zjd0j9wIIo9N3w7vzuN06PLiF+d9p0Bs=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ZcVPJMn2PASA6DnEDXEHsc+9x2pBj9haHO8gkdsxEMg=\",\r\n \"secondaryKey\": \"9zSQacr9FUSSchU9DR4EHYTMIT+xy2prXFJ3fqiXmb4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"ZfrFg70GWfnI8unj1lZio5L6WE0riNSRGO3vFDO5NDA=\",\r\n \"secondaryKey\": \"XXvfzUyLghrsZRJsIs7tkOVsKXrW43udsCE9XPGh+iM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Fn28UjfjdJsxPgzYfbWkDaw3z2wHyi+wja2cEWpbQok=\",\r\n \"secondaryKey\": \"FDBw+D2TDsTU6MGXcnshAWnuipx/J85CRQWJMjUu8Gg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Z2xBXB2GlEwYZZoSLV/R30ivq5W9SOjmUagj5hE2UKU=\",\r\n \"secondaryKey\": \"KIu0w/p8eKasffbbBr6aukr20pfIQZ5rYLl6arjXKSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubDeviceLifecycle": [ - "ps8102", - "ps1082", - "ps4577", - "ps8842", - "ps3861" + "ps3110", + "ps4537", + "ps6523", + "ps6466", + "ps7301" ] }, "Variables": { diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs index c61e907aab45..e0c2cf36fc68 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs @@ -49,9 +49,9 @@ public class AddAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Target DeviceId.")] + [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; } @@ -59,7 +59,7 @@ public class AddAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters public PSDeviceAuthType AuthMethod { get; set; } [Parameter(Mandatory = false, HelpMessage = "Set device status upon creation.")] - public PSDeviceStatus status { get; set; } + public PSDeviceStatus Status { get; set; } [Parameter(Mandatory = false, HelpMessage = "Description for device status.")] public string StatusReason { get; set; } @@ -119,7 +119,7 @@ public override void ExecuteCmdlet() } device.Authentication = auth; device.Capabilities = psDeviceCapabilities; - device.Status = this.status; + device.Status = this.Status; device.StatusReason = this.StatusReason; RegistryManager registryManager = RegistryManager.CreateFromConnectionString(psIotHubConnectionString.PrimaryConnectionString); diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs index 8646b24d3cb7..9288c1999a8e 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs @@ -50,9 +50,9 @@ public class GetAzIotHubDevice : IotHubBaseCmdlet [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target DeviceId.")] - [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target DeviceId.")] - [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Target DeviceId.")] + [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; } diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs index f8d599764a4b..afb97dbd37ee 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs @@ -51,9 +51,9 @@ public class RemoveAzIotHubDevice : IotHubBaseCmdlet [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target DeviceId.")] - [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target DeviceId.")] - [Parameter(Mandatory = false, ParameterSetName = ResourceParameterSet, HelpMessage = "Target DeviceId.")] + [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; } diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs index b90086609048..8f911b4914c9 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs @@ -65,15 +65,15 @@ public class SetAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForAuth, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForAuth, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForAuth, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForStatus, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForStatus, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForStatus, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 1, Mandatory = true, ParameterSetName = InputObjectParameterSetForEdgeEnabled, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceIdParameterSetForEdgeEnabled, HelpMessage = "Target DeviceId.")] - [Parameter(Position = 2, Mandatory = true, ParameterSetName = ResourceParameterSetForEdgeEnabled, HelpMessage = "Target DeviceId.")] + [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; } @@ -87,7 +87,7 @@ public class SetAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters [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; } + 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.")] @@ -102,7 +102,7 @@ public class SetAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters public override void ExecuteCmdlet() { - if (ShouldProcess(this.DeviceId, Properties.Resources.SetIotHubDevice)) + if (ShouldProcess(this.DeviceId, Properties.Resources.UpdateIotHubDevice)) { IotHubDescription iotHubDescription = null; switch (ParameterSetName) @@ -162,7 +162,7 @@ public override void ExecuteCmdlet() case InputObjectParameterSetForStatus: case ResourceIdParameterSetForStatus: case ResourceParameterSetForStatus: - device.Status = this.status; + device.Status = this.Status; device.StatusReason = this.StatusReason; break; case InputObjectParameterSetForEdgeEnabled: diff --git a/src/IotHub/IotHub/Properties/Resources.Designer.cs b/src/IotHub/IotHub/Properties/Resources.Designer.cs index 7f90f7ec0a7d..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. /// @@ -257,20 +257,20 @@ internal static string RemoveIotHubRoutingEndpoint { } /// - /// Looks up a localized string similar to Set Device. + /// Looks up a localized string similar to Update IoT Hub . /// - internal static string SetIotHubDevice { + internal static string UpdateIotHub { get { - return ResourceManager.GetString("SetIotHubDevice", resourceCulture); + return ResourceManager.GetString("UpdateIotHub", resourceCulture); } } /// - /// Looks up a localized string similar to Update IoT Hub . + /// Looks up a localized string similar to Update Device. /// - internal static string UpdateIotHub { + internal static string UpdateIotHubDevice { get { - return ResourceManager.GetString("UpdateIotHub", resourceCulture); + return ResourceManager.GetString("UpdateIotHubDevice", resourceCulture); } } diff --git a/src/IotHub/IotHub/Properties/Resources.resx b/src/IotHub/IotHub/Properties/Resources.resx index f10218c880f0..e167157bee48 100644 --- a/src/IotHub/IotHub/Properties/Resources.resx +++ b/src/IotHub/IotHub/Properties/Resources.resx @@ -132,8 +132,8 @@ Remove Device - - Set 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 index 1b3c5141b378..660992392558 100644 --- a/src/IotHub/IotHub/help/Add-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Add-AzIotHubDevice.md @@ -1,4 +1,4 @@ ---- +--- 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 @@ -8,28 +8,28 @@ schema: 2.0.0 # Add-AzIotHubDevice ## SYNOPSIS -Add a device in an IoT Hub. +Create a device in an IoT Hub. ## SYNTAX ### ResourceSet (Default) ``` Add-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId] - [-AuthMethod ] [-status ] [-StatusReason ] [-EdgeEnabled] + [-AuthMethod ] [-Status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### InputObjectSet ``` Add-AzIotHubDevice [-InputObject] [-DeviceId] [-AuthMethod ] - [-status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ] + [-Status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceIdSet ``` Add-AzIotHubDevice [-ResourceId] [-DeviceId] [-AuthMethod ] - [-status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ] + [-Status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -43,14 +43,14 @@ Create a device with different authorization type in an IoT Hub. PS C:\> Add-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -AuthMethod "shared_private_key" -EdgeEnabled ``` -Add an edge enabled IoT device with default authorization (shared private key). +Create an edge enabled IoT device with default authorization (shared private key). ### Example 2 ```powershell PS C:\> Add-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice2" -AuthMethod "x509_ca" -Status Disabled -StatusReason "Some Reason" ``` -Add an IoT device with root CA authorization with disabled status and reason. +Create an IoT device with root CA authorization with disabled status and reason. ## PARAMETERS @@ -58,7 +58,7 @@ Add an IoT device with root CA authorization with disabled status and reason. The authorization type an entity is to be created with. ```yaml -Type: PSDeviceAuthType +Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType Parameter Sets: (All) Aliases: Accepted values: shared_private_key, x509_thumbprint, x509_ca @@ -74,7 +74,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -86,10 +86,10 @@ Accept wildcard characters: False ``` ### -DeviceId -Target DeviceId. +Target Device Id. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -104,7 +104,7 @@ Accept wildcard characters: False Flag indicating edge enablement. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -119,7 +119,7 @@ Accept wildcard characters: False IotHub object ```yaml -Type: PSIotHub +Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub Parameter Sets: InputObjectSet Aliases: @@ -134,7 +134,7 @@ Accept wildcard characters: False Name of the Iot Hub ```yaml -Type: String +Type: System.String Parameter Sets: ResourceSet Aliases: @@ -145,11 +145,26 @@ 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: String +Type: System.String Parameter Sets: ResourceSet Aliases: @@ -164,7 +179,7 @@ Accept wildcard characters: False IotHub Resource Id ```yaml -Type: String +Type: System.String Parameter Sets: ResourceIdSet Aliases: @@ -175,11 +190,26 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -status +### -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: PSDeviceStatus +Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus Parameter Sets: (All) Aliases: Accepted values: Enabled, Disabled @@ -195,7 +225,7 @@ Accept wildcard characters: False Description for device status. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -210,7 +240,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -226,7 +256,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -238,8 +268,7 @@ 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). +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 diff --git a/src/IotHub/IotHub/help/Az.IotHub.md b/src/IotHub/IotHub/help/Az.IotHub.md index aea83b699930..acf6fe7360a0 100644 --- a/src/IotHub/IotHub/help/Az.IotHub.md +++ b/src/IotHub/IotHub/help/Az.IotHub.md @@ -15,7 +15,7 @@ Commands for Managing Azure IotHubs Create/update an Azure IoT Hub certificate. ### [Add-AzIotHubDevice](Add-AzIotHubDevice.md) -Add a device in an IoT Hub. +Create a device in an IoT Hub. ### [Add-AzIotHubEventHubConsumerGroup](Add-AzIotHubEventHubConsumerGroup.md) Creates an eventhub consumer group. @@ -45,7 +45,7 @@ Generates a verification code for an Azure IoT Hub certificate. Gets the IotHub connectionstrings. ### [Get-AzIotHubDevice](Get-AzIotHubDevice.md) -Lists all devices or a particular device contained within an Azure IoT Hub. +Lists all devices or a particular device contained within an Azure IoT Hub. ### [Get-AzIotHubEventHubConsumerGroup](Get-AzIotHubEventHubConsumerGroup.md) Gets all the eventhub consumergroups. @@ -95,8 +95,8 @@ Deletes an IotHub. ### [Remove-AzIotHubCertificate](Remove-AzIotHubCertificate.md) Deletes an Azure IoT Hub certificate. -### [Remove-azIotHubDevice](Remove-AzIotHubDevice.md) -Deletes an IoT Hub device. +### [Remove-AzIotHubDevice](Remove-AzIotHubDevice.md) +Delete an IoT Hub device. ### [Remove-AzIotHubEventHubConsumerGroup](Remove-AzIotHubEventHubConsumerGroup.md) Deletes an eventhub consumergroup. @@ -117,7 +117,7 @@ Delete an endpoint for your IoT Hub Updates the properties of an IotHub. ### [Set-AzIotHubDevice](Set-AzIotHubDevice.md) -Updates an IoT Hub device. +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 index ab742e65e5f6..02abb2515ca8 100644 --- a/src/IotHub/IotHub/help/Get-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md @@ -1,4 +1,4 @@ ---- +--- 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 @@ -75,7 +75,7 @@ Get the details of an IoT Hub device. The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -87,10 +87,10 @@ Accept wildcard characters: False ``` ### -DeviceId -Target DeviceId. +Target Device Id. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -105,7 +105,7 @@ Accept wildcard characters: False IotHub object ```yaml -Type: PSIotHub +Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub Parameter Sets: InputObjectSet Aliases: @@ -120,7 +120,7 @@ Accept wildcard characters: False Name of the Iot Hub ```yaml -Type: String +Type: System.String Parameter Sets: ResourceSet Aliases: @@ -135,7 +135,7 @@ Accept wildcard characters: False Name of the Resource Group ```yaml -Type: String +Type: System.String Parameter Sets: ResourceSet Aliases: @@ -150,7 +150,7 @@ Accept wildcard characters: False IotHub Resource Id ```yaml -Type: String +Type: System.String Parameter Sets: ResourceIdSet Aliases: @@ -162,8 +162,7 @@ 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). +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 diff --git a/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md index 817a0749066d..2939927697c6 100644 --- a/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md @@ -1,4 +1,4 @@ ---- +--- 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 @@ -57,7 +57,7 @@ Delete an Iot Hub device. The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -69,10 +69,10 @@ Accept wildcard characters: False ``` ### -DeviceId -Target DeviceId. +Target Device Id. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -87,7 +87,7 @@ Accept wildcard characters: False IotHub object ```yaml -Type: PSIotHub +Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub Parameter Sets: InputObjectSet Aliases: @@ -102,7 +102,7 @@ Accept wildcard characters: False Name of the Iot Hub ```yaml -Type: String +Type: System.String Parameter Sets: ResourceSet Aliases: @@ -118,7 +118,7 @@ Allows to return the boolean object. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -133,7 +133,7 @@ Accept wildcard characters: False Name of the Resource Group ```yaml -Type: String +Type: System.String Parameter Sets: ResourceSet Aliases: @@ -148,7 +148,7 @@ Accept wildcard characters: False IotHub Resource Id ```yaml -Type: String +Type: System.String Parameter Sets: ResourceIdSet Aliases: @@ -163,7 +163,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -179,7 +179,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -191,8 +191,7 @@ 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). +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 diff --git a/src/IotHub/IotHub/help/Set-AzIotHubDevice.md b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md index c24a125bacf3..977b4c879ac6 100644 --- a/src/IotHub/IotHub/help/Set-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md @@ -1,4 +1,4 @@ ---- +--- 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 @@ -15,7 +15,7 @@ Update an IoT Hub device. ### ResourceSetForStatus (Default) ``` Set-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId] - [-status ] [-StatusReason ] [-DefaultProfile ] [-WhatIf] + [-Status ] [-StatusReason ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -27,7 +27,7 @@ Set-AzIotHubDevice [-InputObject] [-DeviceId] [-AuthMethod < ### InputObjectSetForStatus ``` -Set-AzIotHubDevice [-InputObject] [-DeviceId] [-status ] +Set-AzIotHubDevice [-InputObject] [-DeviceId] [-Status ] [-StatusReason ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -58,7 +58,7 @@ Set-AzIotHubDevice [-ResourceId] [-DeviceId] [-AuthMethod [-DeviceId] [-status ] +Set-AzIotHubDevice [-ResourceId] [-DeviceId] [-Status ] [-StatusReason ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -69,7 +69,7 @@ Set-AzIotHubDevice [-ResourceId] [-DeviceId] [-EdgeEnabled Date: Sun, 9 Feb 2020 13:00:10 +0100 Subject: [PATCH 25/44] Update Get-AzLog.md The -CorrelationId parameter is not a required parameter. --- src/Monitor/Monitor/help/Get-AzLog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Monitor/Monitor/help/Get-AzLog.md b/src/Monitor/Monitor/help/Get-AzLog.md index d2b256502a4e..a6264b9e1a30 100644 --- a/src/Monitor/Monitor/help/Get-AzLog.md +++ b/src/Monitor/Monitor/help/Get-AzLog.md @@ -213,7 +213,6 @@ Accept wildcard characters: False ### -CorrelationId Specifies the correlation ID. -This parameter is required. ```yaml Type: System.String From 298f3db67b6be6089b3aafe95fd74c12ad51368b Mon Sep 17 00:00:00 2001 From: Peter Lorenzen Date: Sun, 9 Feb 2020 13:05:59 +0100 Subject: [PATCH 26/44] Update ChangeLog.md --- src/Monitor/Monitor/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index fbde6391c3cf..2bcb1c76626c 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 ## Upcoming Release +* Small change to the documentation for Get-AzLog ## Version 1.5.0 * Update references in .psd1 to use relative path From a991efefb8e07345b3c06c33f3f3ab5217039749 Mon Sep 17 00:00:00 2001 From: Peter Lorenzen Date: Sun, 9 Feb 2020 13:13:31 +0100 Subject: [PATCH 27/44] Update Get-AzLog.md --- src/Monitor/Monitor/help/Get-AzLog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Monitor/Monitor/help/Get-AzLog.md b/src/Monitor/Monitor/help/Get-AzLog.md index a6264b9e1a30..1b145b13d80f 100644 --- a/src/Monitor/Monitor/help/Get-AzLog.md +++ b/src/Monitor/Monitor/help/Get-AzLog.md @@ -9,7 +9,7 @@ schema: 2.0.0 # Get-AzLog ## SYNOPSIS -Gets a log of events. +Retrieve Activity Log events. ## SYNTAX @@ -46,7 +46,7 @@ Get-AzLog [-StartTime ] [-EndTime ] [-Status ] [-Cal ``` ## DESCRIPTION -The **Get-AzLog** cmdlet gets a log of events. +The **Get-AzLog** cmdlet retrieve Activity Log events. The events can be associated with the current subscription ID, correlation ID, resource group, resource ID, or resource provider. ## EXAMPLES From 6bca9e76656c5fe0007eb768192e3a4def77b8d5 Mon Sep 17 00:00:00 2001 From: Sivan Guetta Date: Sun, 9 Feb 2020 17:15:26 +0200 Subject: [PATCH 28/44] Fix CR comment - support metric alerts without action group --- .../Monitor.Test/ScenarioTests/AlertsTests.cs | 7 + .../ScenarioTests/AlertsTests.ps1 | 47 + ...RmMetricAlertRuleV2WithoutActionGroup.json | 1277 +++++++++++++++++ .../AddAzureRmMetricAlertRuleV2Command.cs | 16 +- .../Monitor/help/Add-AzMetricAlertRuleV2.md | 55 +- .../Az.Monitor/BreakingChangeIssues.csv | 5 +- 6 files changed, 1354 insertions(+), 53 deletions(-) create mode 100644 src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithoutActionGroup.json diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs index e0289093dce9..cbf01fcc284c 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs @@ -106,6 +106,13 @@ public void TestAddAzureRmMetricAlertRuleV2() TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAddAzureRmMetricAlertRuleV2WithoutActionGroup() + { + TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2-NoActionGroup"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAddAzureRmMetricAlertRuleV2WithActionGroupId() diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 index c781e2dde154..791b1ffe44c4 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 @@ -323,6 +323,53 @@ function Test-AddAzureRmMetricAlertRuleV2 <# .SYNOPSIS +Tests adding a GenV2 metric alert rule without action group. +#> +function Test-AddAzureRmMetricAlertRuleV2-NoActionGroup +{ + # Setup + $sub = Get-AzContext + $subscription = $sub.subscription.subscriptionId + $rgname = Get-ResourceGroupName + $location =Get-ProviderLocation ResourceManagement + $resourceName = Get-ResourceName + $ruleWithActionGroupIdName = Get-ResourceName + $ruleByResourceId = Get-ResourceName + $ruleByResourceScope = Get-ResourceName + $actionGroupName = Get-ResourceName + $targetResourceId = '/subscriptions/'+$subscription+'/resourceGroups/'+$rgname+'/providers/Microsoft.Storage/storageAccounts/'+$resourceName + $targetResourceScope = $targetResourceId + $targetResourceType = 'Microsoft.Storage/storageAccounts' + New-AzResourceGroup -Name $rgname -Location $location -Force + New-AzStorageAccount -ResourceGroupName $rgname -Name $resourceName -Location $location -Type Standard_GRS + $email = New-AzActionGroupReceiver -Name 'user1' -EmailReceiver -EmailAddress 'user1@example.com' + $NewActionGroup1 = Set-AzureRmActionGroup -Name $actionGroupName -ResourceGroup $rgname -ShortName ASTG -Receiver $email + $NewActionGroup2 = Set-AzureRmActionGroup -Name $actionGroupName -ResourceGroup $rgname -ShortName ASTG -Receiver $email + $actionGroup1 = New-AzActionGroup -ActionGroupId $NewActionGroup1.Id + $condition = New-AzMetricAlertRuleV2Criteria -MetricName "UsedCapacity" -Operator GreaterThan -Threshold 8 -TimeAggregation Average + try + { + # Test - create metric alert by resource id without action group id + $actual = Add-AzMetricAlertRuleV2 -Name $ruleByResourceId -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -Severity 3 + Assert-AreEqual $actual.Name $ruleByResourceId + + # Test - create metric alert by scope without action group id + $actual = Add-AzMetricAlertRuleV2 -Name $ruleByResourceScope -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceScope $targetResourceScope -TargetResourceType $targetResourceType -TargetResourceRegion $location -Condition $condition -Severity 3 + Assert-AreEqual $actual.Name $ruleByResourceScope + } + finally + { + # Cleanup + Remove-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleByResourceId + Remove-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleByResourceScope + Remove-AzActionGroup -ResourceGroupName $rgname -Name $actionGroupName + Remove-AzureRmStorageAccount -ResourceGroupName $rgName -Name $resourceName + Remove-AzResourceGroup -Name $rgname -Force + } +} + + <# +.SYNOPSIS Tests adding a GenV2 metric alert rule with action group id. #> function Test-AddAzureRmMetricAlertRuleV2-ActionGroupId diff --git a/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithoutActionGroup.json b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithoutActionGroup.json new file mode 100644 index 000000000000..156bcbd988d4 --- /dev/null +++ b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithoutActionGroup.json @@ -0,0 +1,1277 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps1187?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzMTE4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62e6e051-59e0-4a2f-8d5e-e8311bedc583" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.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": [ + "bda438dc-19a4-40c5-b1f6-1a3a6033a701" + ], + "x-ms-correlation-request-id": [ + "bda438dc-19a4-40c5-b1f6-1a3a6033a701" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135227Z:bda438dc-19a4-40c5-b1f6-1a3a6033a701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:52:27 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187\",\r\n \"name\": \"ps1187\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzMzYwMz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18d6b95d-4189-41bc-b31f-d4fa972d90d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/fdd5984c-f786-4181-858c-cfc16d673acf?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "fdd5984c-f786-4181-858c-cfc16d673acf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9f7e8fb0-4251-4767-af7b-d9c717354921" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135233Z:9f7e8fb0-4251-4767-af7b-d9c717354921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:52:32 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/fdd5984c-f786-4181-858c-cfc16d673acf?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9mZGQ1OTg0Yy1mNzg2LTQxODEtODU4Yy1jZmMxNmQ2NzNhY2Y/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "271f4588-2387-42d2-95d1-6560f873b360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "76d6b17f-3697-4cfb-9b81-c07bece7ac23" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135251Z:76d6b17f-3697-4cfb-9b81-c07bece7ac23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:52:50 GMT" + ], + "Content-Length": [ + "1074" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603\",\r\n \"name\": \"ps3603\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-09T13:52:32.7976784Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-09T13:52:32.7976784Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-09T13:52:32.7196006Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps3603.blob.core.windows.net/\",\r\n \"queue\": \"https://ps3603.queue.core.windows.net/\",\r\n \"table\": \"https://ps3603.table.core.windows.net/\",\r\n \"file\": \"https://ps3603.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/microsoft.insights/actionGroups/ps7504?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczc1MDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "192f2eb8-d974-42dc-997d-e96eaa22bb40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "541" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cef22b6b-08a6-4679-9308-53a007d4ca2f" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ff327acc-e8d3-4fa2-9b45-73536db8758b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135258Z:ff327acc-e8d3-4fa2-9b45-73536db8758b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:52:57 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/microsoft.insights/actionGroups/ps7504\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps7504\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/microsoft.insights/actionGroups/ps7504?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczc1MDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a426e4b3-df4a-44f8-a29e-a1e9ddd05756" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "541" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f626c6b-c362-4768-b35e-7cb4f4ca3b02" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e81e0e04-6024-40d4-b901-76781d8569e1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135258Z:e81e0e04-6024-40d4-b901-76781d8569e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:52:58 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/microsoft.insights/actionGroups/ps7504\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps7504\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Insights/metricAlerts/ps5588?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczU1ODg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": []\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59cd4f6c-ac34-460b-bdf2-2153a87aad21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "824" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bc4b17c0-f3c2-4f75-85d1-90d66e2c4fad" + ], + "api-supported-versions": [ + "2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "bc4b17c0-f3c2-4f75-85d1-90d66e2c4fad" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135304Z:bc4b17c0-f3c2-4f75-85d1-90d66e2c4fad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:04 GMT" + ], + "Content-Length": [ + "1181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps5588\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Insights/metricAlerts/ps5588\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Insights/metricAlerts/ps8058?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczgwNTg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"West US\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": []\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b0e9952-c8d8-4ddc-890b-a7813cc0d4a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "945" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ac8570f9-3e49-4514-a0f8-01ea984284ed" + ], + "api-supported-versions": [ + "2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "ac8570f9-3e49-4514-a0f8-01ea984284ed" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135308Z:ac8570f9-3e49-4514-a0f8-01ea984284ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:08 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps8058\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Insights/metricAlerts/ps8058\",\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"westus\",\r\n \"actions\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Insights/metricAlerts/ps5588?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczU1ODg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c56ecdf9-3d95-46c9-b71e-4a8fa3499159" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1ecd0c23-fffc-421c-bca5-5e381c28b075" + ], + "api-supported-versions": [ + "2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "1ecd0c23-fffc-421c-bca5-5e381c28b075" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135311Z:1ecd0c23-fffc-421c-bca5-5e381c28b075" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Insights/metricAlerts/ps8058?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczgwNTg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9c89be1-59e3-4bd8-b390-4c1ab693d78b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87429d79-30a7-434f-9e3c-9644d335d10e" + ], + "api-supported-versions": [ + "2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "87429d79-30a7-434f-9e3c-9644d335d10e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135314Z:87429d79-30a7-434f-9e3c-9644d335d10e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/microsoft.insights/actionGroups/ps7504?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczc1MDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09778e8d-f4dd-460c-87ae-b5d8d12e0904" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "18937651-540c-4545-ba1c-5076387c2cdf" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "3b560395-150d-4b52-98c2-91c065e72a50" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135316Z:3b560395-150d-4b52-98c2-91c065e72a50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1187/providers/Microsoft.Storage/storageAccounts/ps3603?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzMzYwMz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ff2096f-0262-4730-8c69-51ddbb17b51b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "096f6d0d-2211-430a-98e3-8bd5022fafa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "976c233d-1cae-4c20-b361-19d5609ea8ca" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135319Z:976c233d-1cae-4c20-b361-19d5609ea8ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:19 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps1187?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzMTE4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe1f23b-ebca-4928-b6a3-9a23a0e96d37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "39e2c6c7-e5c8-4468-9783-5ba73f895400" + ], + "x-ms-correlation-request-id": [ + "39e2c6c7-e5c8-4468-9783-5ba73f895400" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135323Z:39e2c6c7-e5c8-4468-9783-5ba73f895400" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3486048b-df73-4c8f-839c-0c978944c6ce" + ], + "x-ms-correlation-request-id": [ + "3486048b-df73-4c8f-839c-0c978944c6ce" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135339Z:3486048b-df73-4c8f-839c-0c978944c6ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "57ef945c-69d7-424d-845e-07b84783da30" + ], + "x-ms-correlation-request-id": [ + "57ef945c-69d7-424d-845e-07b84783da30" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135354Z:57ef945c-69d7-424d-845e-07b84783da30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:53:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "ae41e1fc-8a65-4e82-b8b8-b97d0bb00147" + ], + "x-ms-correlation-request-id": [ + "ae41e1fc-8a65-4e82-b8b8-b97d0bb00147" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135409Z:ae41e1fc-8a65-4e82-b8b8-b97d0bb00147" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:54:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "0a34188e-eafb-4fd7-81f4-682a7772d9cd" + ], + "x-ms-correlation-request-id": [ + "0a34188e-eafb-4fd7-81f4-682a7772d9cd" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135425Z:0a34188e-eafb-4fd7-81f4-682a7772d9cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:54:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "2ea3ecc7-c888-441c-a6f6-b8d91ce2adc7" + ], + "x-ms-correlation-request-id": [ + "2ea3ecc7-c888-441c-a6f6-b8d91ce2adc7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135440Z:2ea3ecc7-c888-441c-a6f6-b8d91ce2adc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:54:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "8091f697-2ff6-4f73-bb73-bc07784c755c" + ], + "x-ms-correlation-request-id": [ + "8091f697-2ff6-4f73-bb73-bc07784c755c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135455Z:8091f697-2ff6-4f73-bb73-bc07784c755c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:54:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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": [ + "11992" + ], + "x-ms-request-id": [ + "867dad11-714d-4564-aa9f-0196ea78eb48" + ], + "x-ms-correlation-request-id": [ + "867dad11-714d-4564-aa9f-0196ea78eb48" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135511Z:867dad11-714d-4564-aa9f-0196ea78eb48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:55:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.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": [ + "11991" + ], + "x-ms-request-id": [ + "65c6fbc3-65c1-4233-bc55-0e09191781f2" + ], + "x-ms-correlation-request-id": [ + "65c6fbc3-65c1-4233-bc55-0e09191781f2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20200209T135511Z:65c6fbc3-65c1-4233-bc55-0e09191781f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Feb 2020 13:55:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AddAzureRmMetricAlertRuleV2-NoActionGroup": [ + "ps1187", + "ps3603", + "ps9906", + "ps5588", + "ps8058", + "ps7504" + ] + }, + "Variables": { + "SubscriptionId": "11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3" + } +} \ No newline at end of file diff --git a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs index 57ff60878d00..5a8d841d7d76 100644 --- a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs +++ b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs @@ -26,9 +26,11 @@ namespace Microsoft.Azure.Commands.Insights.Alerts /// /// Add a GenV2 Metric Alert rule /// - [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MetricAlertRuleV2", DefaultParameterSetName = CreateAlertByResourceIdAndActionGroup, SupportsShouldProcess = true), OutputType(typeof(PSMetricAlertRuleV2))] + [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MetricAlertRuleV2", DefaultParameterSetName = CreateAlertByResourceId, SupportsShouldProcess = true), OutputType(typeof(PSMetricAlertRuleV2))] public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase { + const string CreateAlertByResourceId = "CreateAlertByResourceId"; + const string CreateAlertByScopes = "CreateAlertByScopes"; const string CreateAlertByResourceIdAndActionGroup = "CreateAlertByResourceIdAndActionGroup"; const string CreateAlertByScopesAndActionGroup = "CreateAlertByScopesAndActionGroup"; const string CreateAlertByResourceIdAndActionGroupId = "CreateAlertByResourceIdAndActionGroupId"; @@ -66,6 +68,7 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the TargetResourceId parameter /// + [Parameter(ParameterSetName = CreateAlertByResourceId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] [ValidateNotNullOrEmpty] @@ -74,6 +77,7 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the TargetResourceScope parameter /// + [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] [ValidateNotNullOrEmpty] @@ -83,6 +87,7 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the TargetResourceType parameter /// + [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] [ValidateNotNullOrEmpty] @@ -91,6 +96,7 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the TargetResourceRegion parameter /// + [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] [ValidateNotNullOrEmpty] @@ -107,16 +113,16 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the ActionGroup parameter /// - [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] + [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] [Alias("Actions")] public ActivityLogAlertActionGroup[] ActionGroup { get; set; } /// /// Gets or sets the ActionGroupId parameter /// - [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] + [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] + [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] public string[] ActionGroupId { get; set; } /// diff --git a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md index c43d14bd658d..7403ac77c9ca 100644 --- a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md +++ b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md @@ -12,39 +12,21 @@ Adds or updates a V2 (non-classic) metric-based alert rule. ## SYNTAX -### CreateAlertByResourceIdAndActionGroup (Default) +### CreateAlertByResourceId (Default) ``` Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceId -Condition - [-ActionGroup ] [-DisableRule] [-Description ] -Severity + -ActionGroup [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### CreateAlertByResourceIdAndActionGroupId -``` -Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency - -TargetResourceId - -Condition - [-ActionGroupId ] [-DisableRule] [-Description ] -Severity - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### CreateAlertByScopesAndActionGroup -``` -Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency - -TargetResourceScope -TargetResourceType -TargetResourceRegion - -Condition - [-ActionGroup ] [-DisableRule] [-Description ] -Severity - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### CreateAlertByScopesAndActionGroupId +### CreateAlertByScopes ``` Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceScope -TargetResourceType -TargetResourceRegion -Condition - [-ActionGroupId ] [-DisableRule] [-Description ] -Severity + -ActionGroup [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -167,28 +149,13 @@ The Action Group for rule ```yaml Type: Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[] -Parameter Sets: CreateAlertByResourceIdAndActionGroup, CreateAlertByScopesAndActionGroup +Parameter Sets: (All) Aliases: Actions -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ActionGroupId -The Action Group id for rule - -```yaml -Type: System.String[] -Parameter Sets: CreateAlertByResourceIdAndActionGroupId, CreateAlertByScopesAndActionGroupId -Aliases: - -Required: False +Required: True Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: True (ByPropertyName, ByValue) Accept wildcard characters: False ``` @@ -317,7 +284,7 @@ The target resource id for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByResourceIdAndActionGroup, CreateAlertByResourceIdAndActionGroupId +Parameter Sets: CreateAlertByResourceId Aliases: Required: True @@ -332,7 +299,7 @@ The target resource region for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId +Parameter Sets: CreateAlertByScopes Aliases: Required: True @@ -347,7 +314,7 @@ The target resource scope for rule ```yaml Type: System.String[] -Parameter Sets: CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId +Parameter Sets: CreateAlertByScopes Aliases: Scopes Required: True @@ -362,7 +329,7 @@ The target resource type for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId +Parameter Sets: CreateAlertByScopes Aliases: Required: True diff --git a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv index 1e65b4a0f174..6c638f1942bd 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv @@ -2,7 +2,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Metrics.GetAzureRmMetricCommand","Get-AzMetric","0","3030","The generic type for 'property Count' has been changed from 'System.Nullable1[System.Int64]' to 'System.Nullable1[System.Double]'. ","Change the generic type for 'property Count' back to 'System.Nullable`1[System.Int64]'." "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","3030","The generic type for 'parameter Condition' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria]' to 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]'. ","Change the generic type for 'parameter Condition' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria]'." "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","1020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer has output type 'Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria'.","Make cmdlet 'New-AzMetricAlertRuleV2Criteria' return type 'Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria'." -"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","2020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer supports the type 'System.String' for parameter 'DynamicThreshold'.","Change the type for parameter 'DynamicThreshold' back to 'System.String'." -"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Add-AzMetricAlertRuleV2'." -"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set 'CreateAlertByResourceId' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set 'CreateAlertByResourceId' back to cmdlet 'Add-AzMetricAlertRuleV2'." -"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set 'CreateAlertByScopes' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set 'CreateAlertByScopes' back to cmdlet 'Add-AzMetricAlertRuleV2'." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","2020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer supports the type 'System.String' for parameter 'DynamicThreshold'.","Change the type for parameter 'DynamicThreshold' back to 'System.String'." \ No newline at end of file From 571c0b9cf6230ef748b5cca6eafe6358193aae28 Mon Sep 17 00:00:00 2001 From: Sivan Guetta Date: Mon, 10 Feb 2020 10:32:26 +0200 Subject: [PATCH 29/44] Update breaking changes issues --- .../Exceptions/Az.Monitor/BreakingChangeIssues.csv | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv index 6c638f1942bd..1e65b4a0f174 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv @@ -2,4 +2,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Metrics.GetAzureRmMetricCommand","Get-AzMetric","0","3030","The generic type for 'property Count' has been changed from 'System.Nullable1[System.Int64]' to 'System.Nullable1[System.Double]'. ","Change the generic type for 'property Count' back to 'System.Nullable`1[System.Int64]'." "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","3030","The generic type for 'parameter Condition' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria]' to 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]'. ","Change the generic type for 'parameter Condition' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria]'." "Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","1020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer has output type 'Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria'.","Make cmdlet 'New-AzMetricAlertRuleV2Criteria' return type 'Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria'." -"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","2020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer supports the type 'System.String' for parameter 'DynamicThreshold'.","Change the type for parameter 'DynamicThreshold' back to 'System.String'." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.NewAzureRmMetricAlertRuleV2CriteriaCommand","New-AzMetricAlertRuleV2Criteria","0","2020","The cmdlet 'New-AzMetricAlertRuleV2Criteria' no longer supports the type 'System.String' for parameter 'DynamicThreshold'.","Change the type for parameter 'DynamicThreshold' back to 'System.String'." +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Add-AzMetricAlertRuleV2'." +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set 'CreateAlertByResourceId' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set 'CreateAlertByResourceId' back to cmdlet 'Add-AzMetricAlertRuleV2'." +"Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll","Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleV2Command","Add-AzMetricAlertRuleV2","0","1050","The parameter set 'CreateAlertByScopes' for cmdlet 'Add-AzMetricAlertRuleV2' has been removed.","Add parameter set 'CreateAlertByScopes' back to cmdlet 'Add-AzMetricAlertRuleV2'." \ No newline at end of file From 3c59c59e68587bc8a13f2ea0d774c85e0d3392f8 Mon Sep 17 00:00:00 2001 From: Thomas Vuylsteke Date: Mon, 10 Feb 2020 13:46:04 +0100 Subject: [PATCH 30/44] Adding info on IANAPrivateRanges --- src/Network/Network/help/New-AzFirewall.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Network/Network/help/New-AzFirewall.md b/src/Network/Network/help/New-AzFirewall.md index 6aac9adac349..93471be49f76 100644 --- a/src/Network/Network/help/New-AzFirewall.md +++ b/src/Network/Network/help/New-AzFirewall.md @@ -178,10 +178,10 @@ $rgName = "resourceGroupName" $vnet = Get-AzVirtualNetwork -ResourceGroupName $rgName -Name "vnet" $pip = Get-AzPublicIpAddress -ResourceGroupName $rgName -Name "publicIpName" -New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -VirtualNetwork $vnet -PublicIpAddress $pip -PrivateRange @("99.99.99.0/24", "66.66.0.0/16") +New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -VirtualNetwork $vnet -PublicIpAddress $pip -PrivateRange @("IANAPrivateRanges", "99.99.99.0/24", "66.66.0.0/16") ``` -This example creates a Firewall that treats "99.99.99.0/24" and "66.66.0.0/16" as private ip ranges and won't snat traffic to those addresses +This example creates a Firewall that treats "99.99.99.0/24" and "66.66.0.0/16" as private ip ranges and won't snat traffic to those addresses. The entry "IANAPrivateRanges" will ensure all traffic to IANA Private Ranges won't snat. When the PrivateRange parameter is not specified traffic to IANA Private Ranges won't snat. ### 12: Create a Firewall with a management subnet and Public IP address ``` @@ -364,7 +364,7 @@ Accept wildcard characters: False ``` ### -PrivateRange -The private IP ranges to which traffic won't be SNAT'ed +The private IP ranges to which traffic won't be SNAT'ed. Include "IANAPrivateRanges" as a value to ensure traffic to IANA Private Ranges won't snat. ```yaml Type: System.String[] From 033b30799079743e1cfbffd60aa3c599831dca2d Mon Sep 17 00:00:00 2001 From: Sivan Guetta Date: Mon, 10 Feb 2020 15:19:35 +0200 Subject: [PATCH 31/44] Update help file --- .../Monitor/help/Add-AzMetricAlertRuleV2.md | 63 +++++++++++++++++-- 1 file changed, 57 insertions(+), 6 deletions(-) diff --git a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md index 7403ac77c9ca..d31253f9b24d 100644 --- a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md +++ b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md @@ -14,6 +14,15 @@ Adds or updates a V2 (non-classic) metric-based alert rule. ### CreateAlertByResourceId (Default) ``` +Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency + -TargetResourceId + -Condition + [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### CreateAlertByResourceIdAndActionGroup +``` Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceId -Condition @@ -21,8 +30,26 @@ Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize < [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### CreateAlertByResourceIdAndActionGroupId +``` +Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency + -TargetResourceId + -Condition + -ActionGroupId [-DisableRule] [-Description ] -Severity + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ### CreateAlertByScopes ``` +Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency + -TargetResourceScope -TargetResourceType -TargetResourceRegion + -Condition + [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### CreateAlertByScopesAndActionGroup +``` Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceScope -TargetResourceType -TargetResourceRegion -Condition @@ -30,6 +57,15 @@ Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize < [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### CreateAlertByScopesAndActionGroupId +``` +Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency + -TargetResourceScope -TargetResourceType -TargetResourceRegion + -Condition + -ActionGroupId [-DisableRule] [-Description ] -Severity + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION Adds or updates a **V2 (non-classic) metric-based alert rule**. The added rule is associated with a resource group and has a name. This cmdlet implements the ShouldProcess pattern, i.e. it might request confirmation from the user before actually creating, modifying, or removing the resource. @@ -149,13 +185,28 @@ The Action Group for rule ```yaml Type: Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[] -Parameter Sets: (All) +Parameter Sets: CreateAlertByResourceIdAndActionGroup, CreateAlertByScopesAndActionGroup Aliases: Actions Required: True Position: Named Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ActionGroupId +The Action Group id for rule + +```yaml +Type: System.String[] +Parameter Sets: CreateAlertByResourceIdAndActionGroupId, CreateAlertByScopesAndActionGroupId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` @@ -284,7 +335,7 @@ The target resource id for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByResourceId +Parameter Sets: CreateAlertByResourceId, CreateAlertByResourceIdAndActionGroup, CreateAlertByResourceIdAndActionGroupId Aliases: Required: True @@ -299,7 +350,7 @@ The target resource region for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopes +Parameter Sets: CreateAlertByScopes, CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId Aliases: Required: True @@ -314,7 +365,7 @@ The target resource scope for rule ```yaml Type: System.String[] -Parameter Sets: CreateAlertByScopes +Parameter Sets: CreateAlertByScopes, CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId Aliases: Scopes Required: True @@ -329,7 +380,7 @@ The target resource type for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopes +Parameter Sets: CreateAlertByScopes, CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId Aliases: Required: True From c8739cc38c4ae977434404d592d0245ae4ddc8fa Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Mon, 10 Feb 2020 22:13:21 +0800 Subject: [PATCH 32/44] Add SubscriptionId, TenantId, and execution time into client telemetry --- src/Accounts/Accounts/ChangeLog.md | 1 + tools/Common.Netcore.Dependencies.targets | 32 +++++++++++------------ 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index dbc141e44e5f..4ee9c30c325c 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Add SubscriptionId, TenantId, and execution time into data of client side telemetry ## Version 1.7.1 * Disable context auto saving when AzureRmContext.json not available diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index 5618e0de0966..1cfd5fca5d9a 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -32,7 +32,7 @@ - $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.5-preview\tools\ + $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.6-preview\tools\ From 468e8f2f899f0eb10395f81089a3c7b70da32708 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Tue, 11 Feb 2020 00:11:18 +0800 Subject: [PATCH 33/44] Add new version of common packages --- tools/Common.Netcore.Dependencies.targets | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index 1cfd5fca5d9a..bed10f217213 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -32,7 +32,7 @@ - $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.6-preview\tools\ + $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.7-preview\tools\ From fd6877792852a7d4ac866085caaf2eec35e8ea74 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Tue, 11 Feb 2020 00:21:00 +0800 Subject: [PATCH 34/44] test --- tools/Common.Netcore.Dependencies.targets | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index bed10f217213..5618e0de0966 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -32,7 +32,7 @@ - $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.7-preview\tools\ + $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.5-preview\tools\ From 3638a4622c7b56e855b15a42980b7ea0b35a41eb Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Tue, 11 Feb 2020 00:39:20 +0800 Subject: [PATCH 35/44] Add new version of common packages --- tools/Common.Netcore.Dependencies.targets | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index 5618e0de0966..bed10f217213 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -32,7 +32,7 @@ - $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.5-preview\tools\ + $(NugetPackageRoot)microsoft.azure.powershell.storage\1.3.7-preview\tools\ From a348e2e60b241d64a8d4efc832ddb3fe6902e2a4 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Tue, 11 Feb 2020 02:46:52 +0800 Subject: [PATCH 36/44] Polished changelog.md --- src/Compute/Compute/ChangeLog.md | 2 +- src/FrontDoor/FrontDoor/ChangeLog.md | 2 +- src/Monitor/Monitor/ChangeLog.md | 4 ++-- src/Network/Network/ChangeLog.md | 2 +- src/Resources/Resources/ChangeLog.md | 14 +++++++------- src/Sql/Sql/ChangeLog.md | 4 ++-- src/StorageSync/StorageSync/ChangeLog.md | 2 +- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 973e1cf9d953..6433daee9014 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -19,7 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release -* Allow empty value for ProximityPlacementGroupId during update +* Allowed empty value for ProximityPlacementGroupId during update ## Version 3.4.0 * Limit the number of VM status to 100 to avoid throttling when Get-AzVM -Status is performed without VM name. diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index 45a75fdc936c..798e616c6696 100644 --- a/src/FrontDoor/FrontDoor/ChangeLog.md +++ b/src/FrontDoor/FrontDoor/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* Add cmdlet to get managed rule definitions that can be used in WAF +* Added cmdlet to get managed rule definitions that can be used in WAF ## Version 1.3.0 * Update references in .psd1 to use relative path diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index 0f2948dfcb4b..afc0cba4689e 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -16,9 +16,9 @@ ## YYYY.MM.DD - Version X.Y.Z (Previous Release) * Overview of change #1 - Additional information about change #1 - +--> ## Upcoming Release -* A new parameter called ActionGroupId was added to New-AzMetricAlertRuleV2 command. +* A new parameter called ActionGroupId was added to `New-AzMetricAlertRuleV2` command. - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). ## Version 1.5.0 diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 6eab6f3105d1..7ca85586af57 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -21,7 +21,7 @@ ## Upcoming Release * Fixed FilterData example in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. * Added Packet Capture example for capture all inner and outer packets in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. -* Support Azure Firewall Policy on VNet Firewalls +* Supported Azure Firewall Policy on VNet Firewalls - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls ## Version 2.3.0 diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index b01e5e5d2b2d..d2e4c32aeef0 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,14 +18,14 @@ - Additional information about change #1 --> ## Upcoming Release -* Refactor template deployment cmdlets - - Add new cmdlets for managing deployments at management group: *-AzManagementGroupDeployment - - Add new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment - - Refactor *-AzDeployment cmdlets to work specificly at subscription scope +* Refactored template deployment cmdlets + - Added new cmdlets for managing deployments at management group: *-AzManagementGroupDeployment + - Added new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment + - Refactored *-AzDeployment cmdlets to work specifically at subscription scope - Created aliases *-AzSubscriptionDeployment for *-AzDeployment cmdlets -* Fix `Update-AzADApplication` when parameter `AvailableToOtherTenants` is not set -* Remove ApplicationObjectWithoutCredentialParameterSet to avoid AmbiguousParameterSetException. -* Regenerate help files +* Fixed `Update-AzADApplication` when parameter `AvailableToOtherTenants` is not set +* Removed ApplicationObjectWithoutCredentialParameterSet to avoid AmbiguousParameterSetException. +* Regenerated help files ## Version 1.10.0 * Make -Scope optional in *-AzPolicyAssignment cmdlets with default to context subscription diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 6bd01e87d401..02bae8e27c3a 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -19,8 +19,8 @@ --> ## Upcoming Release * Added support for cross subscription point in time restore on Managed Instances. -* Add support for changing existing Sql Managed Instance hardware generation -* Fix Update-AzSqlServerVulnerabilityAssessmentSetting help examples: parameter/property output - EmailAdmins +* Added support for changing existing Sql Managed Instance hardware generation +* Fixed `Update-AzSqlServerVulnerabilityAssessmentSetting` help examples: parameter/property output - EmailAdmins ## Version 2.2.0 Fix New-AzSqlDatabaseSecondary cmdlet to check for PartnerDatabaseName existence instead of DatabaseName existence. diff --git a/src/StorageSync/StorageSync/ChangeLog.md b/src/StorageSync/StorageSync/ChangeLog.md index 9c2bf4e36887..d24e8c2fd5bb 100644 --- a/src/StorageSync/StorageSync/ChangeLog.md +++ b/src/StorageSync/StorageSync/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* Update supported character sets in `Invoke-AzStorageSyncCompatibilityCheck`. +* Updated supported character sets in `Invoke-AzStorageSyncCompatibilityCheck`. ## Version 1.2.2 * Update references in .psd1 to use relative path From 1af2e9cce55c42dcb9b4986c0afc7b3ccd0aed2a Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Tue, 11 Feb 2020 02:52:32 +0800 Subject: [PATCH 37/44] Corrected tense --- src/Accounts/Accounts/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 4ee9c30c325c..8a8d46554cd4 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* Add SubscriptionId, TenantId, and execution time into data of client side telemetry +* Added SubscriptionId, TenantId, and execution time into data of client side telemetry ## Version 1.7.1 * Disable context auto saving when AzureRmContext.json not available From 5e8f60bfdf80a416801db966bca83cd33937328d Mon Sep 17 00:00:00 2001 From: Peter Lorenzen Date: Mon, 10 Feb 2020 21:29:15 +0100 Subject: [PATCH 38/44] Update Get-AzLog.md Added "This parameter is required." again. --- src/Monitor/Monitor/help/Get-AzLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/help/Get-AzLog.md b/src/Monitor/Monitor/help/Get-AzLog.md index 1b145b13d80f..42e45275426c 100644 --- a/src/Monitor/Monitor/help/Get-AzLog.md +++ b/src/Monitor/Monitor/help/Get-AzLog.md @@ -212,7 +212,7 @@ Accept wildcard characters: False ``` ### -CorrelationId -Specifies the correlation ID. +Specifies the correlation ID. This parameter is required. ```yaml Type: System.String From 728f68c828088c266d0ba962be0bc4bafeee0f8a Mon Sep 17 00:00:00 2001 From: Peter Lorenzen Date: Mon, 10 Feb 2020 21:30:31 +0100 Subject: [PATCH 39/44] Update ChangeLog.md --- src/Monitor/Monitor/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index 2bcb1c76626c..9888fbede032 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 ## Upcoming Release -* Small change to the documentation for Get-AzLog +* Fixed description of the Get-AzLog cmdlet. ## Version 1.5.0 * Update references in .psd1 to use relative path From 420a731d77a2f6f5650dcc3107afab3351bd6e96 Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Mon, 10 Feb 2020 10:46:49 -0800 Subject: [PATCH 40/44] Update parameter Name to IotHubName --- .../ScenarioTests/IotHubDPDeviceTests.ps1 | 20 +- .../TestAzureIotHubDeviceLifecycle.json | 452 +++++++++--------- .../DataPlane/Device/AddAzIotHubDevice.cs | 10 +- .../DataPlane/Device/GetAzIotHubDevice.cs | 10 +- .../DataPlane/Device/RemoveAzIotHubDevice.cs | 10 +- .../DataPlane/Device/SetAzIotHubDevice.cs | 10 +- src/IotHub/IotHub/help/Add-AzIotHubDevice.md | 8 +- src/IotHub/IotHub/help/Get-AzIotHubDevice.md | 8 +- .../IotHub/help/Remove-AzIotHubDevice.md | 8 +- src/IotHub/IotHub/help/Set-AzIotHubDevice.md | 16 +- 10 files changed, 276 insertions(+), 276 deletions(-) diff --git a/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 index b1a3205ae38e..894dfd340480 100644 --- a/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 +++ b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 @@ -40,43 +40,43 @@ function Test-AzureRmIotHubDeviceLifecycle $iothub = New-AzIotHub -Name $IotHubName -ResourceGroupName $ResourceGroupName -Location $Location -SkuName $Sku -Units 1 # Get all devices - $devices = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $IotHubName + $devices = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName Assert-True { $devices.Count -eq 0 } # Add iot device with symmetric authentication - $newDevice1 = Add-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $IotHubName -DeviceId $device1 -AuthMethod 'shared_private_key' + $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 -Name $IotHubName -DeviceId $device2 -AuthMethod 'x509_thumbprint' -PrimaryThumbprint $primaryThumbprint -SecondaryThumbprint $secondaryThumbprint + $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 -Name $IotHubName -DeviceId $device3 -AuthMethod 'x509_ca' + $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 -Name $IotHubName + $devices = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName Assert-True { $devices.Count -eq 3} # Update Device - $updatedDevice1 = Set-AzIoTHubDevice -ResourceGroupName $ResourceGroupName -Name $IotHubName -DeviceId $device1 -Status 'Disabled' -StatusReason 'Reason1' + $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 -Name $IotHubName -DeviceId $device3 -EdgeEnabled $true + $updatedDevice2 = Set-AzIoTHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device3 -EdgeEnabled $true Assert-True { $updatedDevice2.Capabilities.IotEdge } # Get device detail - $iotDevice = Get-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $IotHubName -DeviceId $device1 + $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 } @@ -84,10 +84,10 @@ function Test-AzureRmIotHubDeviceLifecycle Assert-True { $iotDevice.StatusReason -eq 'Reason1' } # Delete iot device - $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $IotHubName -DeviceId $device1 -Passthru + $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device1 -Passthru Assert-True { $result } # Delete all devices - $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -Name $IotHubName -Passthru + $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 index 4d32654521b9..cf2031cd1570 100644 --- 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 @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c870010-a4b7-4177-bd83-dd0aeddd4a9b" + "3377f849-3388-4a8e-83f4-50786a1d1387" ], "Accept-Language": [ "en-US" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "022e1f9d-513f-4467-b706-3ec9f90a6032" + "f41edc86-d8b4-46ac-9917-ffd4c306c577" ], "x-ms-correlation-request-id": [ - "022e1f9d-513f-4467-b706-3ec9f90a6032" + "f41edc86-d8b4-46ac-9917-ffd4c306c577" ], "x-ms-routing-request-id": [ - "WESTUS:20200206T235906Z:022e1f9d-513f-4467-b706-3ec9f90a6032" + "WESTUS2:20200210T183825Z:f41edc86-d8b4-46ac-9917-ffd4c306c577" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Feb 2020 23:59:06 GMT" + "Mon, 10 Feb 2020 18:38:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,20 +54,20 @@ "-1" ], "Content-Length": [ - "5648" + "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 \"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}", + "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/ps4537?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNDUzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "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": [ - "9eb84a71-a74e-452b-9ea1-76abb9505120" + "0fc54151-61fd-4999-9824-eb7aa0266be7" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "8907e2e9-cbd7-4dce-ba59-97b2eeb9b843" + "119bff95-e425-40ed-90a3-c25abcffddc2" ], "x-ms-correlation-request-id": [ - "8907e2e9-cbd7-4dce-ba59-97b2eeb9b843" + "119bff95-e425-40ed-90a3-c25abcffddc2" ], "x-ms-routing-request-id": [ - "WESTUS:20200206T235907Z:8907e2e9-cbd7-4dce-ba59-97b2eeb9b843" + "WESTUS2:20200210T183826Z:119bff95-e425-40ed-90a3-c25abcffddc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Feb 2020 23:59:07 GMT" + "Mon, 10 Feb 2020 18:38:25 GMT" ], "Content-Length": [ "165" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537\",\r\n \"name\": \"ps4537\",\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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "ed80fdc3-4437-446e-b37a-e6924f4a5708" + "82d9a136-2e6f-4a1f-80f7-ec1296a61266" ], "Accept-Language": [ "en-US" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "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" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "9ec18fc6-6810-4012-b138-34e317ce36b1" + "fedbf8f6-2bb4-45af-884e-3bf8d53c02d4" ], "x-ms-correlation-request-id": [ - "9ec18fc6-6810-4012-b138-34e317ce36b1" + "fedbf8f6-2bb4-45af-884e-3bf8d53c02d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200206T235927Z:9ec18fc6-6810-4012-b138-34e317ce36b1" + "WESTUS:20200210T183844Z:fedbf8f6-2bb4-45af-884e-3bf8d53c02d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Feb 2020 23:59:26 GMT" + "Mon, 10 Feb 2020 18:38:44 GMT" ], "Content-Length": [ "619" @@ -195,12 +195,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\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/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/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJWak1HWXlZbVF0Wm1JME15MDBNMkpqTFdFeU1UWXRPRE01WTJRM05HSmpORE01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": { @@ -225,13 +225,13 @@ "11998" ], "x-ms-request-id": [ - "6c5f7d76-183f-422d-9c51-4f7430c278f1" + "4221959b-f823-4ede-a4d2-2be3491a60e1" ], "x-ms-correlation-request-id": [ - "6c5f7d76-183f-422d-9c51-4f7430c278f1" + "4221959b-f823-4ede-a4d2-2be3491a60e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200206T235957Z:6c5f7d76-183f-422d-9c51-4f7430c278f1" + "WESTUS:20200210T183915Z:4221959b-f823-4ede-a4d2-2be3491a60e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Feb 2020 23:59:56 GMT" + "Mon, 10 Feb 2020 18:39:14 GMT" ], "Content-Length": [ "20" @@ -256,8 +256,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJWak1HWXlZbVF0Wm1JME15MDBNMkpqTFdFeU1UWXRPRE01WTJRM05HSmpORE01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": { @@ -275,20 +275,20 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "363d4542-3d6d-41a5-a29c-cd0c230eef8a" + "deefb15e-9bf0-4598-af9f-e16a4cd1fdf1" ], "x-ms-correlation-request-id": [ - "363d4542-3d6d-41a5-a29c-cd0c230eef8a" + "deefb15e-9bf0-4598-af9f-e16a4cd1fdf1" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000027Z:363d4542-3d6d-41a5-a29c-cd0c230eef8a" + "WESTUS:20200210T183945Z:deefb15e-9bf0-4598-af9f-e16a4cd1fdf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:00:26 GMT" + "Mon, 10 Feb 2020 18:39:45 GMT" ], "Content-Length": [ "20" @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2VjMGYyYmQtZmI0My00M2JjLWEyMTYtODM5Y2Q3NGJjNDM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJWak1HWXlZbVF0Wm1JME15MDBNMkpqTFdFeU1UWXRPRE01WTJRM05HSmpORE01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "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": { @@ -339,13 +339,13 @@ "11996" ], "x-ms-request-id": [ - "ba518fe9-fb35-43bd-88ba-e4004c0465ac" + "692e1bbd-c4e6-4e84-955b-ffa689843746" ], "x-ms-correlation-request-id": [ - "ba518fe9-fb35-43bd-88ba-e4004c0465ac" + "692e1bbd-c4e6-4e84-955b-ffa689843746" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000057Z:ba518fe9-fb35-43bd-88ba-e4004c0465ac" + "WESTUS:20200210T184015Z:692e1bbd-c4e6-4e84-955b-ffa689843746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:00:57 GMT" + "Mon, 10 Feb 2020 18:40:15 GMT" ], "Content-Length": [ "22" @@ -370,8 +370,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": { @@ -396,13 +396,13 @@ "11995" ], "x-ms-request-id": [ - "ad38e7bf-a707-41e6-9bd9-0878e027caa5" + "30b56f80-b889-4bba-bf82-0125a282f1a5" ], "x-ms-correlation-request-id": [ - "ad38e7bf-a707-41e6-9bd9-0878e027caa5" + "30b56f80-b889-4bba-bf82-0125a282f1a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000058Z:ad38e7bf-a707-41e6-9bd9-0878e027caa5" + "WESTUS:20200210T184016Z:30b56f80-b889-4bba-bf82-0125a282f1a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +411,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:00:58 GMT" + "Mon, 10 Feb 2020 18:40:15 GMT" ], "Content-Length": [ "1460" @@ -423,17 +423,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "9cfaf16e-9d80-4284-9e13-0e493db0c4a6" + "0be96706-b65c-4261-8fa2-2f046f8f1d9c" ], "Accept-Language": [ "en-US" @@ -459,13 +459,13 @@ "11994" ], "x-ms-request-id": [ - "7d7b1743-b088-4211-8e09-e90728babb2d" + "ac41cffc-c9a5-4f9c-8135-d14ee23cbf2a" ], "x-ms-correlation-request-id": [ - "7d7b1743-b088-4211-8e09-e90728babb2d" + "ac41cffc-c9a5-4f9c-8135-d14ee23cbf2a" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000058Z:7d7b1743-b088-4211-8e09-e90728babb2d" + "WESTUS:20200210T184016Z:ac41cffc-c9a5-4f9c-8135-d14ee23cbf2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:00:58 GMT" + "Mon, 10 Feb 2020 18:40:16 GMT" ], "Content-Length": [ "1460" @@ -486,17 +486,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "eab1e707-de6d-42ba-9d65-320c4fa32ec5" + "b0dff344-c19f-48cb-bf7a-325ccdadb2d4" ], "Accept-Language": [ "en-US" @@ -522,13 +522,13 @@ "11993" ], "x-ms-request-id": [ - "753e5d4b-0de0-4200-a4e5-cc9eb276a685" + "54f01d0b-a14d-4671-9371-c2be5a3cb5af" ], "x-ms-correlation-request-id": [ - "753e5d4b-0de0-4200-a4e5-cc9eb276a685" + "54f01d0b-a14d-4671-9371-c2be5a3cb5af" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000059Z:753e5d4b-0de0-4200-a4e5-cc9eb276a685" + "WESTUS:20200210T184017Z:54f01d0b-a14d-4671-9371-c2be5a3cb5af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,7 +537,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:00:59 GMT" + "Mon, 10 Feb 2020 18:40:16 GMT" ], "Content-Length": [ "1460" @@ -549,17 +549,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "0500d52a-ac19-40f4-be70-383f29621330" + "5d8ff0c6-916c-4cb7-bd1f-1f78b7e68631" ], "Accept-Language": [ "en-US" @@ -585,13 +585,13 @@ "11992" ], "x-ms-request-id": [ - "553db112-46af-4ccc-b573-d8f26e9ea4a5" + "7207bcf7-0f07-41ad-bfc1-6b9cd50a54d7" ], "x-ms-correlation-request-id": [ - "553db112-46af-4ccc-b573-d8f26e9ea4a5" + "7207bcf7-0f07-41ad-bfc1-6b9cd50a54d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000100Z:553db112-46af-4ccc-b573-d8f26e9ea4a5" + "WESTUS:20200210T184018Z:7207bcf7-0f07-41ad-bfc1-6b9cd50a54d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,7 +600,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:00 GMT" + "Mon, 10 Feb 2020 18:40:17 GMT" ], "Content-Length": [ "1460" @@ -612,17 +612,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "2d434663-629e-428d-9870-7e049cad8188" + "cc4f5a26-28dd-4fd4-bebe-eee1f6dfc65e" ], "Accept-Language": [ "en-US" @@ -648,13 +648,13 @@ "11991" ], "x-ms-request-id": [ - "1007f4f6-3510-4338-8223-cfdbd33e030f" + "3ab3b8c2-3ecc-4b49-94e8-bad4a02f57eb" ], "x-ms-correlation-request-id": [ - "1007f4f6-3510-4338-8223-cfdbd33e030f" + "3ab3b8c2-3ecc-4b49-94e8-bad4a02f57eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000101Z:1007f4f6-3510-4338-8223-cfdbd33e030f" + "WESTUS:20200210T184018Z:3ab3b8c2-3ecc-4b49-94e8-bad4a02f57eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,7 +663,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:00 GMT" + "Mon, 10 Feb 2020 18:40:18 GMT" ], "Content-Length": [ "1460" @@ -675,17 +675,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "375fbef9-e069-4d1c-ab81-fdc7edf3f2ca" + "b451d61e-33f7-46a0-aa86-a6db5b4a18d9" ], "Accept-Language": [ "en-US" @@ -711,13 +711,13 @@ "11990" ], "x-ms-request-id": [ - "140c93f2-4054-4304-8eed-00555e36000b" + "7a157785-7a0d-405c-a355-3ffea16e8413" ], "x-ms-correlation-request-id": [ - "140c93f2-4054-4304-8eed-00555e36000b" + "7a157785-7a0d-405c-a355-3ffea16e8413" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000101Z:140c93f2-4054-4304-8eed-00555e36000b" + "WESTUS:20200210T184019Z:7a157785-7a0d-405c-a355-3ffea16e8413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,7 +726,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:01 GMT" + "Mon, 10 Feb 2020 18:40:19 GMT" ], "Content-Length": [ "1460" @@ -738,17 +738,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "d1a8a10b-1bce-4320-be07-ba53f3a7a827" + "5d246406-632b-49fd-bbce-a210c506f7d3" ], "Accept-Language": [ "en-US" @@ -774,13 +774,13 @@ "11989" ], "x-ms-request-id": [ - "11a9ad58-d18e-47e2-94c3-d7d0fb11090c" + "1d1278b3-bfb4-4555-ba8d-503d8f791a93" ], "x-ms-correlation-request-id": [ - "11a9ad58-d18e-47e2-94c3-d7d0fb11090c" + "1d1278b3-bfb4-4555-ba8d-503d8f791a93" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000102Z:11a9ad58-d18e-47e2-94c3-d7d0fb11090c" + "WESTUS:20200210T184020Z:1d1278b3-bfb4-4555-ba8d-503d8f791a93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +789,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:02 GMT" + "Mon, 10 Feb 2020 18:40:19 GMT" ], "Content-Length": [ "1460" @@ -801,17 +801,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "281349d3-d011-4774-8e4b-0521c0c94f49" + "f088eb7e-8f31-493b-8595-dc80e71cd1cf" ], "Accept-Language": [ "en-US" @@ -837,13 +837,13 @@ "11988" ], "x-ms-request-id": [ - "cd25a49e-0756-4520-9e22-432f66afd3ce" + "9520132e-4f85-487e-9e1f-6a49fcda90e1" ], "x-ms-correlation-request-id": [ - "cd25a49e-0756-4520-9e22-432f66afd3ce" + "9520132e-4f85-487e-9e1f-6a49fcda90e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000103Z:cd25a49e-0756-4520-9e22-432f66afd3ce" + "WESTUS:20200210T184021Z:9520132e-4f85-487e-9e1f-6a49fcda90e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +852,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:03 GMT" + "Mon, 10 Feb 2020 18:40:20 GMT" ], "Content-Length": [ "1460" @@ -864,17 +864,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "fd2d1e6b-6ef9-4a7f-a345-b7525357bbd4" + "8f821baa-bf27-48a9-af9f-72a62475f797" ], "Accept-Language": [ "en-US" @@ -900,13 +900,13 @@ "11987" ], "x-ms-request-id": [ - "4f588b97-49d6-4846-a970-04a5abb18a22" + "47acc8c9-f914-4212-8712-6d8e1bab4d43" ], "x-ms-correlation-request-id": [ - "4f588b97-49d6-4846-a970-04a5abb18a22" + "47acc8c9-f914-4212-8712-6d8e1bab4d43" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000104Z:4f588b97-49d6-4846-a970-04a5abb18a22" + "WESTUS:20200210T184022Z:47acc8c9-f914-4212-8712-6d8e1bab4d43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,7 +915,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:04 GMT" + "Mon, 10 Feb 2020 18:40:21 GMT" ], "Content-Length": [ "1460" @@ -927,17 +927,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "e1e2db73-868c-4ee9-bf87-de9b73dbd5da" + "c11b08f3-5c77-4d52-935c-641410957397" ], "Accept-Language": [ "en-US" @@ -963,13 +963,13 @@ "11986" ], "x-ms-request-id": [ - "f58af972-fc8f-40a5-9a6d-762d4b7e6392" + "70c7fc73-1bf4-4ce8-a114-401fab7b5819" ], "x-ms-correlation-request-id": [ - "f58af972-fc8f-40a5-9a6d-762d4b7e6392" + "70c7fc73-1bf4-4ce8-a114-401fab7b5819" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000105Z:f58af972-fc8f-40a5-9a6d-762d4b7e6392" + "WESTUS:20200210T184023Z:70c7fc73-1bf4-4ce8-a114-401fab7b5819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,7 +978,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:05 GMT" + "Mon, 10 Feb 2020 18:40:22 GMT" ], "Content-Length": [ "1460" @@ -990,17 +990,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "b8d38c7d-1cd4-45e4-8244-213880350d72" + "99761805-52f2-48cb-a38d-8e6b76e80572" ], "Accept-Language": [ "en-US" @@ -1026,13 +1026,13 @@ "11985" ], "x-ms-request-id": [ - "e7b632c2-5bae-4da8-93e3-9e3e7663b223" + "bc812dc0-f2be-4080-be76-b782bde4dd38" ], "x-ms-correlation-request-id": [ - "e7b632c2-5bae-4da8-93e3-9e3e7663b223" + "bc812dc0-f2be-4080-be76-b782bde4dd38" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000105Z:e7b632c2-5bae-4da8-93e3-9e3e7663b223" + "WESTUS:20200210T184023Z:bc812dc0-f2be-4080-be76-b782bde4dd38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,7 +1041,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:05 GMT" + "Mon, 10 Feb 2020 18:40:23 GMT" ], "Content-Length": [ "1460" @@ -1053,17 +1053,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "6a646f40-52d3-47af-b6e9-e74f265f2e85" + "4d43a6c4-7b4f-4cb0-8cb8-de4b8c99d864" ], "Accept-Language": [ "en-US" @@ -1089,13 +1089,13 @@ "11984" ], "x-ms-request-id": [ - "602fdbf7-e7a5-449c-a4f1-c2ec798816e5" + "6fd1cb12-a23c-403c-9a1d-78de9250ef0c" ], "x-ms-correlation-request-id": [ - "602fdbf7-e7a5-449c-a4f1-c2ec798816e5" + "6fd1cb12-a23c-403c-9a1d-78de9250ef0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000106Z:602fdbf7-e7a5-449c-a4f1-c2ec798816e5" + "WESTUS:20200210T184024Z:6fd1cb12-a23c-403c-9a1d-78de9250ef0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,7 +1104,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:06 GMT" + "Mon, 10 Feb 2020 18:40:24 GMT" ], "Content-Length": [ "1460" @@ -1116,17 +1116,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps4537/providers/Microsoft.Devices/IotHubs/ps3110\",\r\n \"name\": \"ps3110\",\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\": \"ps4537\",\r\n \"etag\": \"AAAAAAs81eg=\",\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\": \"ps3110.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3110\",\r\n \"endpoint\": \"sb://iothub-ns-ps3110-2892088-2a06d707f8.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/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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "1ed908c1-f618-43a7-84cb-da1d0ace9e96" + "d2cf4dd8-2c61-440c-9d62-783efe7ca854" ], "Accept-Language": [ "en-US" @@ -1152,13 +1152,13 @@ "1199" ], "x-ms-request-id": [ - "0b868ede-fd43-456a-8657-54e03ea3b1af" + "6925bee0-f9f2-44e9-aac3-f1510221eddd" ], "x-ms-correlation-request-id": [ - "0b868ede-fd43-456a-8657-54e03ea3b1af" + "6925bee0-f9f2-44e9-aac3-f1510221eddd" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000059Z:0b868ede-fd43-456a-8657-54e03ea3b1af" + "WESTUS:20200210T184017Z:6925bee0-f9f2-44e9-aac3-f1510221eddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1167,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:00:59 GMT" + "Mon, 10 Feb 2020 18:40:16 GMT" ], "Content-Length": [ "905" @@ -1179,17 +1179,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "4da64ade-ca05-40a1-8349-47e0e70dcb70" + "3c27ad37-28b5-46ad-b37e-cf88e59ac0a5" ], "Accept-Language": [ "en-US" @@ -1215,13 +1215,13 @@ "1198" ], "x-ms-request-id": [ - "ed295dee-0e8d-4dd1-a048-043bc8c4e060" + "37f40d1f-2ab1-4b94-9304-5ec8777436ba" ], "x-ms-correlation-request-id": [ - "ed295dee-0e8d-4dd1-a048-043bc8c4e060" + "37f40d1f-2ab1-4b94-9304-5ec8777436ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000100Z:ed295dee-0e8d-4dd1-a048-043bc8c4e060" + "WESTUS:20200210T184018Z:37f40d1f-2ab1-4b94-9304-5ec8777436ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1230,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:00 GMT" + "Mon, 10 Feb 2020 18:40:17 GMT" ], "Content-Length": [ "905" @@ -1242,17 +1242,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "b4aa7af5-c475-481f-8f2f-b7fc8e5ac699" + "5bc9de2d-bd0a-41ea-a739-bb0cbe658ada" ], "Accept-Language": [ "en-US" @@ -1278,13 +1278,13 @@ "1197" ], "x-ms-request-id": [ - "099a4e4c-6a32-4242-9148-948ac03e2f01" + "e270dea4-f7b9-4ca5-bae3-d309447507b1" ], "x-ms-correlation-request-id": [ - "099a4e4c-6a32-4242-9148-948ac03e2f01" + "e270dea4-f7b9-4ca5-bae3-d309447507b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000101Z:099a4e4c-6a32-4242-9148-948ac03e2f01" + "WESTUS:20200210T184019Z:e270dea4-f7b9-4ca5-bae3-d309447507b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1293,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:01 GMT" + "Mon, 10 Feb 2020 18:40:18 GMT" ], "Content-Length": [ "905" @@ -1305,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "5a6f5c29-c135-4da3-94cc-23528b5fea8c" + "314d89ed-10f2-418d-b0c2-a552c8aa724c" ], "Accept-Language": [ "en-US" @@ -1341,13 +1341,13 @@ "1196" ], "x-ms-request-id": [ - "42728bb9-c877-4510-85f9-58010e3babac" + "baa480bc-698e-470a-8521-cd901be35600" ], "x-ms-correlation-request-id": [ - "42728bb9-c877-4510-85f9-58010e3babac" + "baa480bc-698e-470a-8521-cd901be35600" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000101Z:42728bb9-c877-4510-85f9-58010e3babac" + "WESTUS:20200210T184019Z:baa480bc-698e-470a-8521-cd901be35600" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,7 +1356,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:01 GMT" + "Mon, 10 Feb 2020 18:40:19 GMT" ], "Content-Length": [ "905" @@ -1368,17 +1368,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "a3cdf7f7-ae03-434e-8227-33003f32d74e" + "52cabbbe-f604-47f3-881c-07c134873cec" ], "Accept-Language": [ "en-US" @@ -1404,13 +1404,13 @@ "1195" ], "x-ms-request-id": [ - "d17a8795-1c7a-4739-b8d3-290790ad62ff" + "dd983089-2f0d-43e6-8087-2fa1de2574b4" ], "x-ms-correlation-request-id": [ - "d17a8795-1c7a-4739-b8d3-290790ad62ff" + "dd983089-2f0d-43e6-8087-2fa1de2574b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000102Z:d17a8795-1c7a-4739-b8d3-290790ad62ff" + "WESTUS:20200210T184020Z:dd983089-2f0d-43e6-8087-2fa1de2574b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,7 +1419,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:02 GMT" + "Mon, 10 Feb 2020 18:40:20 GMT" ], "Content-Length": [ "905" @@ -1431,17 +1431,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "48d9e563-d407-4095-abd1-798c4f8ac6ab" + "cb11a6ff-d29f-4a27-a23f-f3e84798440f" ], "Accept-Language": [ "en-US" @@ -1467,13 +1467,13 @@ "1194" ], "x-ms-request-id": [ - "65e0fa21-3649-4d32-9d0c-a74449174030" + "bb7dd2cb-be92-4a85-bfe2-e09e72a618e5" ], "x-ms-correlation-request-id": [ - "65e0fa21-3649-4d32-9d0c-a74449174030" + "bb7dd2cb-be92-4a85-bfe2-e09e72a618e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000103Z:65e0fa21-3649-4d32-9d0c-a74449174030" + "WESTUS:20200210T184021Z:bb7dd2cb-be92-4a85-bfe2-e09e72a618e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1482,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:03 GMT" + "Mon, 10 Feb 2020 18:40:21 GMT" ], "Content-Length": [ "905" @@ -1494,17 +1494,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "c631d808-f067-439a-9422-a496a6c6446f" + "7fc67e3b-16dd-4da3-bdc6-f1a8bae5d84e" ], "Accept-Language": [ "en-US" @@ -1530,13 +1530,13 @@ "1193" ], "x-ms-request-id": [ - "0dc00a68-8f58-49f4-b234-7b52c473a66f" + "f412d060-4878-47d7-8d53-61c133c342ff" ], "x-ms-correlation-request-id": [ - "0dc00a68-8f58-49f4-b234-7b52c473a66f" + "f412d060-4878-47d7-8d53-61c133c342ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000104Z:0dc00a68-8f58-49f4-b234-7b52c473a66f" + "WESTUS:20200210T184022Z:f412d060-4878-47d7-8d53-61c133c342ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1545,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:04 GMT" + "Mon, 10 Feb 2020 18:40:21 GMT" ], "Content-Length": [ "905" @@ -1557,17 +1557,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "54c58a27-5abf-4cd0-ab78-925bafb21e9b" + "9c68f7f0-a129-41b2-821d-0cc050ad8439" ], "Accept-Language": [ "en-US" @@ -1593,13 +1593,13 @@ "1192" ], "x-ms-request-id": [ - "1935fc86-d36c-4ec0-949a-4fe578d81906" + "c4ec6b85-da2c-46f1-bb05-d6d605dd31e0" ], "x-ms-correlation-request-id": [ - "1935fc86-d36c-4ec0-949a-4fe578d81906" + "c4ec6b85-da2c-46f1-bb05-d6d605dd31e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000105Z:1935fc86-d36c-4ec0-949a-4fe578d81906" + "WESTUS:20200210T184023Z:c4ec6b85-da2c-46f1-bb05-d6d605dd31e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1608,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:05 GMT" + "Mon, 10 Feb 2020 18:40:22 GMT" ], "Content-Length": [ "905" @@ -1620,17 +1620,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "7cb2b87c-c4e5-4fb2-b197-3075a640e557" + "fb03ec46-69ce-42c9-b808-c739531e1250" ], "Accept-Language": [ "en-US" @@ -1656,13 +1656,13 @@ "1191" ], "x-ms-request-id": [ - "8be9b61e-608e-4918-9f1e-2a5cb892d0af" + "0feaa8e7-aa9c-4f75-82f5-9dbc8914cc82" ], "x-ms-correlation-request-id": [ - "8be9b61e-608e-4918-9f1e-2a5cb892d0af" + "0feaa8e7-aa9c-4f75-82f5-9dbc8914cc82" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000106Z:8be9b61e-608e-4918-9f1e-2a5cb892d0af" + "WESTUS:20200210T184024Z:0feaa8e7-aa9c-4f75-82f5-9dbc8914cc82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,7 +1671,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:05 GMT" + "Mon, 10 Feb 2020 18:40:23 GMT" ], "Content-Length": [ "905" @@ -1683,17 +1683,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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/ps4537/providers/Microsoft.Devices/IotHubs/ps3110/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNDUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMxMTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "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": [ - "db56be5f-7078-40b0-9696-5aad50454818" + "78960d2b-e159-4ce8-9789-bab7e83d3ca0" ], "Accept-Language": [ "en-US" @@ -1719,13 +1719,13 @@ "1190" ], "x-ms-request-id": [ - "0a20744e-4e15-407b-86e4-451f26fc8ef7" + "f9829da1-753c-4998-ad9e-d3b06a289025" ], "x-ms-correlation-request-id": [ - "0a20744e-4e15-407b-86e4-451f26fc8ef7" + "f9829da1-753c-4998-ad9e-d3b06a289025" ], "x-ms-routing-request-id": [ - "WESTUS:20200207T000106Z:0a20744e-4e15-407b-86e4-451f26fc8ef7" + "WESTUS:20200210T184024Z:f9829da1-753c-4998-ad9e-d3b06a289025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,7 +1734,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Feb 2020 00:01:06 GMT" + "Mon, 10 Feb 2020 18:40:24 GMT" ], "Content-Length": [ "905" @@ -1746,17 +1746,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"pU3a44bEUPEpbK/dQM/Q3ZdhUIvoh5FLpj1NjV6OCBc=\",\r\n \"secondaryKey\": \"i96kQTZYpAPziX08Aa8ZLgSBs8TdcC0PbeA5OSqZ+wQ=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fT3zDd8DJXEW7hyRMxbINHXvyRe3pXia4P/txAJtsog=\",\r\n \"secondaryKey\": \"ILZGtZUVD6cQmjkhYS4ej/sPzKwPEvL7Fq7WmR6Zy9o=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Q45DVaBbsfcH29Gn+0X6haZ+YVXHvkqt10olC0oGZMg=\",\r\n \"secondaryKey\": \"V7fa/XCgCx+bhl8ZzXhhi030IwoIqM7fcpTutMggBI8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5mbThUwe0Nvgydg7V1HcBQ0lI82PorcqMg4X+uoYNew=\",\r\n \"secondaryKey\": \"FxN45ZIlsbiDI7YdyEPBn0UL0g+o8K2udwiIEcdvZrI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"xHrGvZJnzWdAoBN35OX1+RI0FIgq87V0uzeSHJHE5HY=\",\r\n \"secondaryKey\": \"u5M8F+dSetAFs+i/OkRyuCfc4t0X9vXthMoVCncx/Cw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "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": [ - "ps3110", - "ps4537", - "ps6523", - "ps6466", - "ps7301" + "ps8874", + "ps8272", + "ps3026", + "ps3242", + "ps64" ] }, "Variables": { diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs index e0c2cf36fc68..729f8e7d42ef 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/AddAzIotHubDevice.cs @@ -47,7 +47,7 @@ public class AddAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Iot Hub")] [ValidateNotNullOrEmpty] - public string Name { get; set; } + 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.")] @@ -75,7 +75,7 @@ public override void ExecuteCmdlet() if (ParameterSetName.Equals(InputObjectParameterSet)) { this.ResourceGroupName = this.InputObject.Resourcegroup; - this.Name = this.InputObject.Name; + this.IotHubName = this.InputObject.Name; iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); } else @@ -83,13 +83,13 @@ public override void ExecuteCmdlet() if (ParameterSetName.Equals(ResourceIdParameterSet)) { this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); - this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId); } - iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName); } - IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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); diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs index 9288c1999a8e..bff0742041a6 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/GetAzIotHubDevice.cs @@ -48,7 +48,7 @@ public class GetAzIotHubDevice : IotHubBaseCmdlet [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Iot Hub")] [ValidateNotNullOrEmpty] - public string Name { get; set; } + public string IotHubName { get; set; } [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target Device Id.")] [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target Device Id.")] @@ -62,7 +62,7 @@ public override void ExecuteCmdlet() if (ParameterSetName.Equals(InputObjectParameterSet)) { this.ResourceGroupName = this.InputObject.Resourcegroup; - this.Name = this.InputObject.Name; + this.IotHubName = this.InputObject.Name; iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); } else @@ -70,13 +70,13 @@ public override void ExecuteCmdlet() if (ParameterSetName.Equals(ResourceIdParameterSet)) { this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); - this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId); } - iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName); } - IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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); diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs index afb97dbd37ee..53dd3d47cd7e 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/RemoveAzIotHubDevice.cs @@ -49,7 +49,7 @@ public class RemoveAzIotHubDevice : IotHubBaseCmdlet [Parameter(Position = 1, Mandatory = true, ParameterSetName = ResourceParameterSet, HelpMessage = "Name of the Iot Hub")] [ValidateNotNullOrEmpty] - public string Name { get; set; } + public string IotHubName { get; set; } [Parameter(Mandatory = false, ParameterSetName = InputObjectParameterSet, HelpMessage = "Target Device Id.")] [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Target Device Id.")] @@ -66,7 +66,7 @@ public override void ExecuteCmdlet() if (ParameterSetName.Equals(InputObjectParameterSet)) { this.ResourceGroupName = this.InputObject.Resourcegroup; - this.Name = this.InputObject.Name; + this.IotHubName = this.InputObject.Name; iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); } else @@ -74,13 +74,13 @@ public override void ExecuteCmdlet() if (ParameterSetName.Equals(ResourceIdParameterSet)) { this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); - this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId); } - iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName); } - IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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); diff --git a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs index 8f911b4914c9..1a4122c84a3d 100644 --- a/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs +++ b/src/IotHub/IotHub/IotHub/DataPlane/Device/SetAzIotHubDevice.cs @@ -63,7 +63,7 @@ public class SetAzIotHubDevice : IotHubBaseCmdlet, IDynamicParameters [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 Name { get; set; } + 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.")] @@ -111,23 +111,23 @@ public override void ExecuteCmdlet() case InputObjectParameterSetForStatus: case InputObjectParameterSetForEdgeEnabled: this.ResourceGroupName = this.InputObject.Resourcegroup; - this.Name = this.InputObject.Name; + this.IotHubName = this.InputObject.Name; iotHubDescription = IotHubUtils.ConvertObject(this.InputObject); break; case ResourceIdParameterSetForAuth: case ResourceIdParameterSetForStatus: case ResourceIdParameterSetForEdgeEnabled: this.ResourceGroupName = IotHubUtils.GetResourceGroupName(this.ResourceId); - this.Name = IotHubUtils.GetIotHubName(this.ResourceId); + this.IotHubName = IotHubUtils.GetIotHubName(this.ResourceId); break; } if (iotHubDescription == null) { - iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.Name); + iotHubDescription = this.IotHubClient.IotHubResource.Get(this.ResourceGroupName, this.IotHubName); } - IEnumerable authPolicies = this.IotHubClient.IotHubResource.ListKeys(this.ResourceGroupName, this.Name); + 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); diff --git a/src/IotHub/IotHub/help/Add-AzIotHubDevice.md b/src/IotHub/IotHub/help/Add-AzIotHubDevice.md index 660992392558..398f495e9792 100644 --- a/src/IotHub/IotHub/help/Add-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Add-AzIotHubDevice.md @@ -14,7 +14,7 @@ Create a device in an IoT Hub. ### ResourceSet (Default) ``` -Add-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId] +Add-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId] [-AuthMethod ] [-Status ] [-StatusReason ] [-EdgeEnabled] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -40,14 +40,14 @@ Create a device with different authorization type in an IoT Hub. ### Example 1 ```powershell -PS C:\> Add-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -AuthMethod "shared_private_key" -EdgeEnabled +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" -Name "myiothub" -DeviceId "myDevice2" -AuthMethod "x509_ca" -Status Disabled -StatusReason "Some Reason" +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. @@ -130,7 +130,7 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -Name +### -IotHubName Name of the Iot Hub ```yaml diff --git a/src/IotHub/IotHub/help/Get-AzIotHubDevice.md b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md index 02abb2515ca8..9e622c34aa82 100644 --- a/src/IotHub/IotHub/help/Get-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Get-AzIotHubDevice.md @@ -14,7 +14,7 @@ Lists all devices or a particular device contained within an Azure IoT Hub. ### ResourceSet (Default) ``` -Get-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId ] +Get-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId ] [-DefaultProfile ] [] ``` @@ -37,7 +37,7 @@ Get the details of an Iot Hub device or list all devices in an Iot Hub. ### Example 1 ```powershell -PS C:\> Get-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" +PS C:\> Get-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" Device Id Status Connection State Authentication Edge Enabled Last Activity Time --------- ------ ---------------- -------------- ------------ ------------------ @@ -50,7 +50,7 @@ Show all devices in an Iot Hub. ### Example 2 ```powershell -PS C:\> Get-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" +PS C:\> Get-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" DeviceId : myDevice1 GenerationId : 637148941292917073 @@ -116,7 +116,7 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -Name +### -IotHubName Name of the Iot Hub ```yaml diff --git a/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md index 2939927697c6..8fc92be36b66 100644 --- a/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Remove-AzIotHubDevice.md @@ -14,7 +14,7 @@ Delete an IoT Hub device. ### ResourceSet (Default) ``` -Remove-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId ] [-PassThru] +Remove-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -37,14 +37,14 @@ Delete all devices or a specific device from an Iot Hub. ### Example 1 ```powershell -PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" +PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" ``` Delete all Iot Hub devices. ### Example 2 ```powershell -PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -PassThru +PS C:\> Remove-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -PassThru True ``` @@ -98,7 +98,7 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -Name +### -IotHubName Name of the Iot Hub ```yaml diff --git a/src/IotHub/IotHub/help/Set-AzIotHubDevice.md b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md index 977b4c879ac6..ba0e29465fff 100644 --- a/src/IotHub/IotHub/help/Set-AzIotHubDevice.md +++ b/src/IotHub/IotHub/help/Set-AzIotHubDevice.md @@ -14,7 +14,7 @@ Update an IoT Hub device. ### ResourceSetForStatus (Default) ``` -Set-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId] +Set-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId] [-Status ] [-StatusReason ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -39,15 +39,15 @@ Set-AzIotHubDevice [-InputObject] [-DeviceId] [-EdgeEnabled ### ResourceSetForAuth ``` -Set-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId] +Set-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId] [-AuthMethod ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceSetForEdgeEnabled ``` -Set-AzIotHubDevice [-ResourceGroupName] [-Name] [-DeviceId] [-EdgeEnabled ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzIotHubDevice [-ResourceGroupName] [-IotHubName] [-DeviceId] + [-EdgeEnabled ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceIdSetForAuth @@ -75,21 +75,21 @@ Update an IoT Hub device. ### Example 1 ```powershell -PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -EdgeEnabled +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" -Name "myiothub" -DeviceId "myDevice1" -Status Disabled +PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -Status Disabled ``` Disable device status. ### Example 3 ```powershell -PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -DeviceId "myDevice1" -AuthMethod "x509_ca" +PS C:\> Set-AzIotHubDevice -ResourceGroupName "myresourcegroup" -IotHubName "myiothub" -DeviceId "myDevice1" -AuthMethod "x509_ca" ``` Update authorization type of an Iot Hub device. @@ -172,7 +172,7 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -Name +### -IotHubName Name of the Iot Hub ```yaml From 8ec6123e327ef4e8941a2e02b5e5169e14ec9697 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 11 Feb 2020 09:23:01 +0800 Subject: [PATCH 41/44] Update Get-AzLog.md --- src/Monitor/Monitor/help/Get-AzLog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/help/Get-AzLog.md b/src/Monitor/Monitor/help/Get-AzLog.md index 42e45275426c..d5a3adf6c5ee 100644 --- a/src/Monitor/Monitor/help/Get-AzLog.md +++ b/src/Monitor/Monitor/help/Get-AzLog.md @@ -212,7 +212,8 @@ Accept wildcard characters: False ``` ### -CorrelationId -Specifies the correlation ID. This parameter is required. +Specifies the correlation ID. +This parameter is required. ```yaml Type: System.String From 9898ed902557402d67717b2c47c18fb13d7f4197 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 11 Feb 2020 09:23:29 +0800 Subject: [PATCH 42/44] Update Get-AzLog.md --- src/Monitor/Monitor/help/Get-AzLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/help/Get-AzLog.md b/src/Monitor/Monitor/help/Get-AzLog.md index d5a3adf6c5ee..79edac14485a 100644 --- a/src/Monitor/Monitor/help/Get-AzLog.md +++ b/src/Monitor/Monitor/help/Get-AzLog.md @@ -212,7 +212,7 @@ Accept wildcard characters: False ``` ### -CorrelationId -Specifies the correlation ID. +Specifies the correlation ID. This parameter is required. ```yaml From d5f774fdc21ab95d0d6d4f24e7ee0c392670bf7d Mon Sep 17 00:00:00 2001 From: Dingmeng Xue <56333063+dingmeng-xue@users.noreply.github.com> Date: Tue, 11 Feb 2020 14:01:54 +0800 Subject: [PATCH 43/44] Updated Register-PSRepository example --- documentation/development-docs/help-generation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/development-docs/help-generation.md b/documentation/development-docs/help-generation.md index 75ea98f7e68a..d783d1ade622 100644 --- a/documentation/development-docs/help-generation.md +++ b/documentation/development-docs/help-generation.md @@ -17,7 +17,7 @@ Install-Module -Name platyPS -Scope CurrentUser **Note:** this module will need to be installed from the [PowerShell Gallery](http://www.powershellgallery.com/). If, for some reason, this isn't a registered repository when running the `Get-PSRepository` cmdlet, then you will need to register it by running the following command: ```powershell -Register-PSRepository -Name PSGallery -SourceLocation https://www.powershellgallery.com/api/v2/ +Register-PSRepository -Default -InstallationPolicy Trusted ``` ## Using `platyPS` From ab5d8514adf18f5176c4579078edad874007b39b Mon Sep 17 00:00:00 2001 From: Wei Wei Date: Tue, 24 Sep 2019 16:40:48 +0800 Subject: [PATCH 44/44] [Storage] Support Point in Time Restore --- .../EventGrid.Test/EventGrid.Test.csproj | 2 +- .../ScenarioTests/StorageBlobTests.cs | 9 +- .../ScenarioTests/StorageBlobTests.ps1 | 61 + .../TestStorageBlobRestore.json | 2199 +++++++++++++++++ .../Storage.Management.Test.csproj | 2 +- .../Storage.Management/Az.Storage.psd1 | 4 +- .../DisableAzureStorageBlobRestorePolicy.cs | 122 + .../EnableAzureStorageBlobRestorePolicy.cs | 126 + .../Blob/StorageBlobBaseCmdlet.cs | 1 + src/Storage/Storage.Management/ChangeLog.md | 7 + .../Models/PSBlobRestore.cs | 141 ++ .../Models/PSBlobServiceProperties.cs | 33 + .../Models/PSStorageAccount.cs | 3 + .../Storage.Management.csproj | 2 +- .../Storage.Management.format.ps1xml | 78 +- .../StorageAccount/GetAzureStorageAccount.cs | 26 +- .../NewAzStorageBlobRangeToRestore.cs | 45 + .../RestoreAzStorageBlobRange.cs | 121 + .../Storage.Management/help/Az.Storage.md | 12 + .../Disable-AzStorageBlobRestorePolicy.md | 183 ++ .../help/Enable-AzStorageBlobRestorePolicy.md | 216 ++ .../help/Get-AzStorageAccount.md | 38 +- .../help/New-AzStorageBlobRangeToRestore.md | 117 + .../help/Restore-AzStorageBlobRange.md | 245 ++ 24 files changed, 3782 insertions(+), 11 deletions(-) create mode 100644 src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json create mode 100644 src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs create mode 100644 src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs create mode 100644 src/Storage/Storage.Management/Models/PSBlobRestore.cs create mode 100644 src/Storage/Storage.Management/StorageAccount/NewAzStorageBlobRangeToRestore.cs create mode 100644 src/Storage/Storage.Management/StorageAccount/RestoreAzStorageBlobRange.cs create mode 100644 src/Storage/Storage.Management/help/Disable-AzStorageBlobRestorePolicy.md create mode 100644 src/Storage/Storage.Management/help/Enable-AzStorageBlobRestorePolicy.md create mode 100644 src/Storage/Storage.Management/help/New-AzStorageBlobRangeToRestore.md create mode 100644 src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md diff --git a/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj b/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj index 4103202411bc..c3f632e0ce9d 100644 --- a/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj +++ b/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj @@ -15,7 +15,7 @@ - + \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs index 9bda7ac39dd8..52a2d17c5c79 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs @@ -57,6 +57,13 @@ public void TestStorageBlobContainerImmutabilityPolicy() public void TestStorageBlobServiceProperties() { TestController.NewInstance.RunPsTest(_logger, "Test-StorageBlobServiceProperties"); - } + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestStorageBlobRestore() + { + TestController.NewInstance.RunPsTest(_logger, "Test-StorageBlobRestore"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 index bcefe3e4e8ce..1b8c97ca2958 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 @@ -395,4 +395,65 @@ function Test-StorageBlobServiceProperties } } +<# +.SYNOPSIS +Test StorageAccount Blob Restore +.DESCRIPTION +SmokeTest +#> +function Test-StorageBlobRestore +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname = 'sto' + $rgname; + $stotype = 'Standard_LRS'; + $loc = Get-ProviderLocation ResourceManagement; + $kind = 'StorageV2' + + Write-Verbose "RGName: $rgname | Loc: $loc" + New-AzResourceGroup -Name $rgname -Location $loc; + + $loc = Get-ProviderLocation_Stage ResourceManagement; + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -Kind $kind + $stos = Get-AzStorageAccount -ResourceGroupName $rgname; + + # Enable Blob Delete Retension Policy, Enable Changefeed, then enabled blob restore policy, then get blob service proeprties and check the setting + Enable-AzStorageBlobDeleteRetentionPolicy -ResourceGroupName $rgname -StorageAccountName $stoname -RetentionDays 5 + Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableChangeFeed $true + # If record, need sleep before enable the blob restore policy, or will get server error + #sleep 100 + Enable-AzStorageBlobRestorePolicy -ResourceGroupName $rgname -StorageAccountName $stoname -RestoreDays 4 + $property = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $true $property.ChangeFeed.Enabled + Assert-AreEqual $true $property.DeleteRetentionPolicy.Enabled + Assert-AreEqual 5 $property.DeleteRetentionPolicy.Days + Assert-AreEqual $true $property.RestorePolicy.Enabled + Assert-AreEqual 4 $property.RestorePolicy.Days + + # restore blobs by -asjob + $range1 = New-AzStorageBlobRangeToRestore -StartRange container1/blob1 -EndRange container2/blob2 + $range2 = New-AzStorageBlobRangeToRestore -StartRange container3/blob3 -EndRange "" + $job = Restore-AzStorageBlobRange -ResourceGroupName $rgname -StorageAccountName $stoname -TimeToRestore (Get-Date).AddSeconds(-1) -BlobRestoreRange $range1,$range2 -asjob + + # Get Storage Account with Blob Restore Status + $stos = Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeBlobRestoreStatus + + # wait for restore job finish, and check Blob Restore Status in Storage Account + $job | Wait-Job + $stos = Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeBlobRestoreStatus + Assert-AreEqual "Complete" $stos.BlobRestoreStatus.Status + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json new file mode 100644 index 000000000000..22fe2704ae20 --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json @@ -0,0 +1,2199 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5462a0e-f955-49b1-86d0-21fdddb827a6" + ], + "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": [ + "11999" + ], + "x-ms-request-id": [ + "82c36d0e-0b1d-48cf-acef-7b74473ae9ed" + ], + "x-ms-correlation-request-id": [ + "82c36d0e-0b1d-48cf-acef-7b74473ae9ed" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151507Z:82c36d0e-0b1d-48cf-acef-7b74473ae9ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12336" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg5491?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7f70561-c826-449b-a880-d12506427de9" + ], + "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": [ + "823a960b-17f7-4e58-829f-0e59cf448380" + ], + "x-ms-correlation-request-id": [ + "823a960b-17f7-4e58-829f-0e59cf448380" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151511Z:823a960b-17f7-4e58-829f-0e59cf448380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:11 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491\",\r\n \"name\": \"pstestrg5491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg5491\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "246557ad-563e-475d-891a-9b14fa39bb4b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "81" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d17855e-40f4-4c61-bf60-be686ae231b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "924be880-b4c1-4da5-bfeb-60a6110754dc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151513Z:924be880-b4c1-4da5-bfeb-60a6110754dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:12 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2(stage)\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e6483a6-2333-4ef9-9745-187699237dfc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "106" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/d6d902c0-f0e2-4d74-9434-dcc3d9e7460d?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "d6d902c0-f0e2-4d74-9434-dcc3d9e7460d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "26d569e7-1c5c-4945-ae5d-8f1749eb00d6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151519Z:26d569e7-1c5c-4945-ae5d-8f1749eb00d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:18 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/d6d902c0-f0e2-4d74-9434-dcc3d9e7460d?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2Q2ZDkwMmMwLWYwZTItNGQ3NC05NDM0LWRjYzNkOWU3NDYwZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df9143b9-0d04-4b14-8569-2482ae21cfe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "b4818f89-a6da-4b64-9a4f-5727791c08ff" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151536Z:b4818f89-a6da-4b64-9a4f-5727791c08ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:35 GMT" + ], + "Content-Length": [ + "1271" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491\",\r\n \"name\": \"stopstestrg5491\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-10T15:15:18.0220773Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5491.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5491.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5491.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5491.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5491.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5491.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1885f70-2fc2-4874-ba22-7b898f22b447" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9bf9e0c5-537b-41ef-b333-6f1e864185bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "a6c23375-4f23-4129-87e3-13e212d48c2e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151536Z:a6c23375-4f23-4129-87e3-13e212d48c2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:36 GMT" + ], + "Content-Length": [ + "1271" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491\",\r\n \"name\": \"stopstestrg5491\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-10T15:15:18.0220773Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5491.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5491.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5491.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5491.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5491.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5491.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8051712a-68cf-47d6-bfcd-91548026b486" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6469900c-0642-47a9-925f-9abe6f62d52a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "824fd30d-9e10-4de3-835d-11cb6a16cefc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151536Z:824fd30d-9e10-4de3-835d-11cb6a16cefc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:36 GMT" + ], + "Content-Length": [ + "1283" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491\",\r\n \"name\": \"stopstestrg5491\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-10T15:15:18.0220773Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5491.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5491.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5491.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5491.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5491.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5491.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c477c486-20c9-4597-adf4-85ea1aa5d271" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bfc58714-19f7-40b1-abea-3bd5883e808f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "befeb512-37ae-42f0-a0e2-2018ca77a543" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151537Z:befeb512-37ae-42f0-a0e2-2018ca77a543" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:36 GMT" + ], + "Content-Length": [ + "353" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4036b00b-0d86-4ede-9210-ab66925b0ab2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3c78a1d8-37ce-4d32-a448-cc8ab344a857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "8bc1d64b-9199-408b-bf37-137e67fc8242" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151538Z:8bc1d64b-9199-408b-bf37-137e67fc8242" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:38 GMT" + ], + "Content-Length": [ + "361" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20eff634-2384-44c7-a0cc-011dc280821a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "188432dc-b276-44a4-a700-3eca0e961d9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "c08c9761-b50b-4f90-b2f4-3091b6f845da" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151720Z:c08c9761-b50b-4f90-b2f4-3091b6f845da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:19 GMT" + ], + "Content-Length": [ + "391" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86285449-096b-417e-9848-fddb016378f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "599b819a-a43d-4f81-a138-1a3d25626c7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "7f827ffd-32ba-4501-bcb2-16ad608878e4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151721Z:7f827ffd-32ba-4501-bcb2-16ad608878e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:21 GMT" + ], + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"restorePolicy\": {\r\n \"enabled\": true,\r\n \"days\": 4\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa12ed9d-9409-435c-aaf0-6f1ba7e1f74b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "154" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1322fd3a-c369-4011-9110-eedab9177fb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "c50c3bea-d87d-4679-99e7-f1ed772b99ba" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151538Z:c50c3bea-d87d-4679-99e7-f1ed772b99ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:37 GMT" + ], + "Content-Length": [ + "331" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n },\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b7cc10b-003d-4dbc-b0b3-c4c734257f85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "206" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "083e203d-2bc7-4a0d-914b-3202bd6f8560" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "ecdddc44-c169-49d8-b097-4c017a7edb48" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151539Z:ecdddc44-c169-49d8-b097-4c017a7edb48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:15:38 GMT" + ], + "Content-Length": [ + "361" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n },\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"restorePolicy\": {\r\n \"enabled\": true,\r\n \"days\": 4\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dafaacc-9618-499c-a897-a6b0dae75ea3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "279" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08db9157-6d87-4e7b-b30f-18cca3e33f24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6c545e4f-f623-43b1-8080-b45c6e7cb97e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151721Z:6c545e4f-f623-43b1-8080-b45c6e7cb97e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:20 GMT" + ], + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"restorePolicy\": {\r\n \"enabled\": true,\r\n \"days\": 4\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491?api-version=2019-06-01&$expand=blobRestoreStatus", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxJiRleHBhbmQ9YmxvYlJlc3RvcmVTdGF0dXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23223caf-5682-4161-bdc8-c7319c57c43a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3503a9d8-29ff-4b4d-9f49-f611d049dee6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "7b7cb316-022b-4cf5-9b86-2cce9520d9ef" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151723Z:7b7cb316-022b-4cf5-9b86-2cce9520d9ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:22 GMT" + ], + "Content-Length": [ + "1271" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491\",\r\n \"name\": \"stopstestrg5491\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-10T15:15:18.0220773Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5491.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5491.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5491.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5491.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5491.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5491.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491?api-version=2019-06-01&$expand=blobRestoreStatus", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxJiRleHBhbmQ9YmxvYlJlc3RvcmVTdGF0dXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8bf3350-9778-4463-8444-acba3e268fcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ce354b0f-4213-46eb-a8c5-8d6ea98ccdea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "9a425f89-5901-4de5-a1cc-0a9a3b385801" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152000Z:9a425f89-5901-4de5-a1cc-0a9a3b385801" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:00 GMT" + ], + "Content-Length": [ + "1553" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491\",\r\n \"name\": \"stopstestrg5491\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"blobRestoreStatus\": {\r\n \"status\": \"Complete\",\r\n \"restoreId\": \"fab10157-a998-4816-8854-091f82583bb5\",\r\n \"parameters\": {\r\n \"timetoRestore\": \"2020-02-10T15:17:22.0304906Z\",\r\n \"blobRanges\": [\r\n {\r\n \"startRange\": \"container1/blob1\",\r\n \"endRange\": \"container2/blob2\"\r\n },\r\n {\r\n \"startRange\": \"container3/blob3\",\r\n \"endRange\": \"\"\r\n }\r\n ]\r\n }\r\n },\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-10T15:15:18.1157952Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-10T15:15:18.0220773Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5491.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5491.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5491.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5491.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5491.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5491.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/restoreBlobRanges?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9yZXN0b3JlQmxvYlJhbmdlcz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"timeToRestore\": \"2020-02-10T15:17:22.0304906Z\",\r\n \"blobRanges\": [\r\n {\r\n \"startRange\": \"container1/blob1\",\r\n \"endRange\": \"container2/blob2\"\r\n },\r\n {\r\n \"startRange\": \"container3/blob3\",\r\n \"endRange\": \"\"\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e6fa9fb-654e-41b8-b40d-12fad826f01f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "251" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "fab10157-a998-4816-8854-091f82583bb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "53474600-a820-4d14-b7ad-cf92f9df6557" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151724Z:53474600-a820-4d14-b7ad-cf92f9df6557" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:24 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "56391658-3a74-4976-83a8-12e9518d654a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "25775370-852d-4339-9b7c-ab5d7119c685" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151741Z:25775370-852d-4339-9b7c-ab5d7119c685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:41 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "e17fc465-74f8-4d2d-af38-c8c0c3528160" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "b96e15e4-9448-4400-b1e2-6df1c9c3cff9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151759Z:b96e15e4-9448-4400-b1e2-6df1c9c3cff9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:17:58 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "b1d5fbef-cd25-4281-af1b-95986320297f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "30c47fc5-693b-4216-8155-d49c2fd8ccc5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151816Z:30c47fc5-693b-4216-8155-d49c2fd8ccc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:18:15 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "b21fdc9b-e942-4c82-8504-865d27ffa972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "e74630c7-a6cd-418b-a649-38ca345fd4dc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151833Z:e74630c7-a6cd-418b-a649-38ca345fd4dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:18:33 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "5ad461b1-80f9-4629-b9f6-464e9325d761" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bf2a719a-164f-4781-945e-580b8c8fa916" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151850Z:bf2a719a-164f-4781-945e-580b8c8fa916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:18:50 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "45d6fb6a-1a49-453f-922a-751736b177d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "53b62a3e-0856-41c2-891b-45ff69092f6a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151908Z:53b62a3e-0856-41c2-891b-45ff69092f6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:19:07 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "e4e45a53-eae2-4a54-a4ea-23800f8dca43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "fc783779-5dce-4c53-81e1-08dff51334ce" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151925Z:fc783779-5dce-4c53-81e1-08dff51334ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:19:24 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "b862fe43-5b23-4209-836b-396b75174a64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "788623d1-ded3-4f53-94af-20e9c3ef4adf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T151942Z:788623d1-ded3-4f53-94af-20e9c3ef4adf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:19:42 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "93ced2f0-c861-4c23-b5e4-7e9e22ba5235" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "e8d6dafd-46fb-4970-94c1-f1123019201b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152000Z:e8d6dafd-46fb-4970-94c1-f1123019201b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:00 GMT" + ], + "Content-Length": [ + "261" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Complete\",\r\n \"restoreId\": \"fab10157-a998-4816-8854-091f82583bb5\",\r\n \"parameters\": {\r\n \"timetoRestore\": \"2020-02-10T15:17:22.0304906Z\",\r\n \"blobRanges\": [\r\n {\r\n \"startRange\": \"container1/blob1\",\r\n \"endRange\": \"container2/blob2\"\r\n },\r\n {\r\n \"startRange\": \"container3/blob3\",\r\n \"endRange\": \"\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/fab10157-a998-4816-8854-091f82583bb5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2ZhYjEwMTU3LWE5OTgtNDgxNi04ODU0LTA5MWY4MjU4M2JiNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1adf45ac-b215-42c5-b3d4-0cd6984a83fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "1004b24f-c063-4648-bbed-b4e5372fa6a4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152000Z:1004b24f-c063-4648-bbed-b4e5372fa6a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:00 GMT" + ], + "Content-Length": [ + "261" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Complete\",\r\n \"restoreId\": \"fab10157-a998-4816-8854-091f82583bb5\",\r\n \"parameters\": {\r\n \"timetoRestore\": \"2020-02-10T15:17:22.0304906Z\",\r\n \"blobRanges\": [\r\n {\r\n \"startRange\": \"container1/blob1\",\r\n \"endRange\": \"container2/blob2\"\r\n },\r\n {\r\n \"startRange\": \"container3/blob3\",\r\n \"endRange\": \"\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cba543d-0cc1-4860-8699-4faf55d32fc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "00226fc1-ecbf-4687-9d19-2a383a877857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "0624ad0b-084c-4f0b-bd74-b24be7a5df72" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152006Z:0624ad0b-084c-4f0b-bd74-b24be7a5df72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:06 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg5491?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTQ5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f226c52-e21a-4fc9-aaa1-289f4af642e5" + ], + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "9ab77715-19b0-496a-b99f-3ef965c0e7f0" + ], + "x-ms-correlation-request-id": [ + "9ab77715-19b0-496a-b99f-3ef965c0e7f0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152011Z:9ab77715-19b0-496a-b99f-3ef965c0e7f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUwT1RFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "1555c685-4eb3-4d0d-81d3-c7a9fd5ef872" + ], + "x-ms-correlation-request-id": [ + "1555c685-4eb3-4d0d-81d3-c7a9fd5ef872" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152027Z:1555c685-4eb3-4d0d-81d3-c7a9fd5ef872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUwT1RFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "0a249e6f-6778-447f-8caa-f8a4214d177d" + ], + "x-ms-correlation-request-id": [ + "0a249e6f-6778-447f-8caa-f8a4214d177d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152042Z:0a249e6f-6778-447f-8caa-f8a4214d177d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUwT1RFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "0c8d8fbb-1cb8-4530-abba-234057d4c6f2" + ], + "x-ms-correlation-request-id": [ + "0c8d8fbb-1cb8-4530-abba-234057d4c6f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152058Z:0c8d8fbb-1cb8-4530-abba-234057d4c6f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:20:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUwT1RFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "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" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "95de8443-b0e1-47c6-8526-11c9f0523688" + ], + "x-ms-correlation-request-id": [ + "95de8443-b0e1-47c6-8526-11c9f0523688" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152113Z:95de8443-b0e1-47c6-8526-11c9f0523688" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:21:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUwT1RFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "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": [ + "11976" + ], + "x-ms-request-id": [ + "c20828ea-d7c5-4272-b6d3-7d27876be152" + ], + "x-ms-correlation-request-id": [ + "c20828ea-d7c5-4272-b6d3-7d27876be152" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152128Z:c20828ea-d7c5-4272-b6d3-7d27876be152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:21:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUwT1RFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "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": [ + "11975" + ], + "x-ms-request-id": [ + "f29e3ade-7866-432e-a713-310ff9f81cb5" + ], + "x-ms-correlation-request-id": [ + "f29e3ade-7866-432e-a713-310ff9f81cb5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200210T152129Z:f29e3ade-7866-432e-a713-310ff9f81cb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Feb 2020 15:21:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-StorageBlobRestore": [ + "pstestrg5491" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/Storage.Management.Test.csproj b/src/Storage/Storage.Management.Test/Storage.Management.Test.csproj index 64a961b1ca8a..dc3cad810f5f 100644 --- a/src/Storage/Storage.Management.Test/Storage.Management.Test.csproj +++ b/src/Storage/Storage.Management.Test/Storage.Management.Test.csproj @@ -11,7 +11,7 @@ - + \ No newline at end of file diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 0af224c91091..9ff8b4c2792f 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -163,7 +163,9 @@ CmdletsToExport = 'Get-AzStorageAccount', 'Get-AzStorageAccountKey', 'Get-AzDataLakeGen2ChildItem', 'Get-AzDataLakeGen2Item', 'New-AzDataLakeGen2Item', 'Move-AzDataLakeGen2Item', 'Remove-AzDataLakeGen2Item', 'Update-AzDataLakeGen2Item', - 'New-AzDataLakeGen2ItemAclObject', 'Get-AzDataLakeGen2ItemContent' + 'New-AzDataLakeGen2ItemAclObject', 'Get-AzDataLakeGen2ItemContent', + 'Enable-AzStorageBlobRestorePolicy','Disable-AzStorageBlobRestorePolicy', + 'New-AzStorageBlobRangeToRestore','Restore-AzStorageBlobRange' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs new file mode 100644 index 000000000000..05e09a492423 --- /dev/null +++ b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs @@ -0,0 +1,122 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Storage +{ + using Microsoft.Azure.Commands.Management.Storage.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + /// + /// Modify Azure Storage service properties + /// + [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageBlobRestorePolicy, SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSRestorePolicy))] + public class DisableAzStorageBlobRestorePolicyCommand : StorageBlobBaseCmdlet + { + + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// BlobServiceProperties ResourceId parameter set + /// + private const string PropertiesResourceIdParameterSet = "BlobServicePropertiesResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias, NameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Input a Storage account Resource Id, or a Blob service properties Resource Id.", + ParameterSetName = PropertiesResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Display ServiceProperties")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (ShouldProcess("BlobRestorePolicy", "Disable")) + { + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PropertiesResourceIdParameterSet: + ResourceIdentifier blobServicePropertiesResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = blobServicePropertiesResource.ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + BlobServiceProperties serviceProperties = this.StorageClient.BlobServices.GetServiceProperties( this.ResourceGroupName, this.StorageAccountName); + + serviceProperties.RestorePolicy = new RestorePolicyProperties(); + serviceProperties.RestorePolicy.Enabled = false; + serviceProperties.RestorePolicy.Days = null; + + serviceProperties = this.StorageClient.BlobServices.SetServiceProperties(this.ResourceGroupName, this.StorageAccountName, serviceProperties); + + if (PassThru) + { + WriteObject(new PSRestorePolicy(serviceProperties.RestorePolicy)); + } + + } + } + } +} diff --git a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs new file mode 100644 index 000000000000..de3cc42c3685 --- /dev/null +++ b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs @@ -0,0 +1,126 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Storage +{ + using Microsoft.Azure.Commands.Management.Storage.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + /// + /// Modify Azure Storage service properties + /// + [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageBlobRestorePolicy, DefaultParameterSetName = AccountNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSRestorePolicy))] + public class EnableAzStorageBlobRestorePolicyCommand : StorageBlobBaseCmdlet + { + + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// BlobServiceProperties ResourceId parameter set + /// + private const string PropertiesResourceIdParameterSet = "BlobServicePropertiesResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias, NameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Input a Storage account Resource Id, or a Blob service properties Resource Id.", + ParameterSetName = PropertiesResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "Sets the number of days for the blob can be restored..")] + [Alias("Days")] + public int RestoreDays { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Display ServiceProperties")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (ShouldProcess("BlobRestorePolicy", "Enable")) + { + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PropertiesResourceIdParameterSet: + ResourceIdentifier blobServicePropertiesResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = blobServicePropertiesResource.ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + BlobServiceProperties serviceProperties = this.StorageClient.BlobServices.GetServiceProperties( this.ResourceGroupName, this.StorageAccountName); + + serviceProperties.RestorePolicy = new RestorePolicyProperties(); + serviceProperties.RestorePolicy.Enabled = true; + serviceProperties.RestorePolicy.Days = RestoreDays; + + serviceProperties = this.StorageClient.BlobServices.SetServiceProperties(this.ResourceGroupName, this.StorageAccountName, serviceProperties); + + if (PassThru) + { + WriteObject(new PSRestorePolicy(serviceProperties.RestorePolicy)); + } + + } + } + } +} diff --git a/src/Storage/Storage.Management/Blob/StorageBlobBaseCmdlet.cs b/src/Storage/Storage.Management/Blob/StorageBlobBaseCmdlet.cs index b8e22dff1f7c..f97edc6c87ba 100644 --- a/src/Storage/Storage.Management/Blob/StorageBlobBaseCmdlet.cs +++ b/src/Storage/Storage.Management/Blob/StorageBlobBaseCmdlet.cs @@ -37,6 +37,7 @@ public abstract class StorageBlobBaseCmdlet : AzureRMCmdlet protected const string StorageContainerLeaseNounStr = StorageContainerNounStr + "Lease"; protected const string StorageBlobServiceProperty = "StorageBlobServiceProperty"; protected const string StorageBlobDeleteRetentionPolicy = "StorageBlobDeleteRetentionPolicy"; + protected const string StorageBlobRestorePolicy = "StorageBlobRestorePolicy"; public const string StorageAccountResourceType = "Microsoft.Storage/storageAccounts"; diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 4de477b8a730..68e60b19afaf 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,13 @@ - Additional information about change #1 --> ## Upcoming Release +* Support Point In Time Restore + - Enable-AzStorageBlobRestorePolicy + - Disable-AzStorageBlobRestorePolicy + - New-AzStorageBlobRangeToRestore + - Restore-AzStorageBlobRange +* Support get blob restore status of Storage account by run get-AzureRMStorageAccount with parameter -IncludeBlobRestoreStatus + - Get-AzureRMStorageAccount ## Version 1.12.0 * Support set Table/Queue Encryption Keytype in Create Storage Account diff --git a/src/Storage/Storage.Management/Models/PSBlobRestore.cs b/src/Storage/Storage.Management/Models/PSBlobRestore.cs new file mode 100644 index 000000000000..a6ce6c3f12c5 --- /dev/null +++ b/src/Storage/Storage.Management/Models/PSBlobRestore.cs @@ -0,0 +1,141 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Management.Storage.Models +{ + /// + /// Wrapper of SDK type BlobRestoreRange + /// + public class PSBlobRestoreRange + { + public string StartRange { get; set; } + public string EndRange { get; set; } + + public PSBlobRestoreRange() + { } + + public PSBlobRestoreRange(string startRange, string endRange) + { + this.StartRange = startRange; + this.EndRange = endRange; + } + + public PSBlobRestoreRange(BlobRestoreRange range) + { + this.StartRange = range.StartRange; + this.EndRange = range.EndRange; + } + + public static IList ParseBlobRestoreRanges(PSBlobRestoreRange[] ranges) + { + IList re = new List(); + if (ranges == null) + { + re.Add( + new BlobRestoreRange + { + StartRange = "", + EndRange = "" + }); + } + else + { + foreach (PSBlobRestoreRange range in ranges) + { + re.Add( + new BlobRestoreRange + { + StartRange = range.StartRange, + EndRange = range.EndRange + }); + } + } + return re; + } + + public static PSBlobRestoreRange[] ParsePSBlobRestoreRanges(IList ranges) + { + if (ranges == null) + { + return null; + } + + List re = new List(); + foreach (BlobRestoreRange range in ranges) + { + re.Add( + new PSBlobRestoreRange + { + StartRange = range.StartRange, + EndRange = range.EndRange + }); + } + return re.ToArray(); + } + } + + /// + /// Wrapper of SDK type BlobRestoreStatus + /// + public class PSBlobRestoreStatus + { + [Ps1Xml(Label = "Status", Target = ViewControl.Table, Position = 0)] + public string Status { get; } + [Ps1Xml(Label = "FailureReason", Target = ViewControl.Table, Position = 2)] + public string FailureReason { get; } + [Ps1Xml(Label = "RestoreId", Target = ViewControl.Table, Position = 1)] + public string RestoreId { get; } + [Ps1Xml(Label = "Parameters.TimeToRestore", Target = ViewControl.Table, ScriptBlock = "$_.Parameters.TimeToRestore", Position = 3)] + [Ps1Xml(Label = "Parameters.BlobRanges", Target = ViewControl.Table, ScriptBlock = "if ($s.Parameters.BlobRanges[0] -ne $null) {if ($s.Parameters.BlobRanges[1] -ne $null) {'[' + $s.Parameters.BlobRanges[0].StartRange + ' -> ' + $s.Parameters.BlobRanges[0].EndRange + ',...]'} else {'[' + $s.Parameters.BlobRanges[0].StartRange + ' -> ' + $s.Parameters.BlobRanges[0].EndRange + ']'}} else {$null}", Position = 4)] + public PSBlobRestoreParameters Parameters { get; } + + public PSBlobRestoreStatus() + { } + + public PSBlobRestoreStatus(BlobRestoreStatus status) + { + this.Status = status.Status; + this.FailureReason = status.FailureReason; + this.RestoreId = status.RestoreId; + this.Parameters = status.Parameters is null? null : new PSBlobRestoreParameters(status.Parameters); + } + + } + + /// + /// Wrapper of SDK type BlobRestoreParameters + /// + public class PSBlobRestoreParameters + { + public DateTime TimeToRestore { get; set; } + public PSBlobRestoreRange[] BlobRanges { get; set; } + + public PSBlobRestoreParameters() + { } + + public PSBlobRestoreParameters(BlobRestoreParameters parameters) + { + this.TimeToRestore = parameters.TimeToRestore; + this.BlobRanges = PSBlobRestoreRange.ParsePSBlobRestoreRanges(parameters.BlobRanges); + } + + } +} + diff --git a/src/Storage/Storage.Management/Models/PSBlobServiceProperties.cs b/src/Storage/Storage.Management/Models/PSBlobServiceProperties.cs index 06bd4f2934e0..4ce10ded14a9 100644 --- a/src/Storage/Storage.Management/Models/PSBlobServiceProperties.cs +++ b/src/Storage/Storage.Management/Models/PSBlobServiceProperties.cs @@ -34,10 +34,14 @@ public class PSBlobServiceProperties public string Type { get; set; } [Ps1Xml(Label = "DefaultServiceVersion", Target = ViewControl.Table, Position = 2)] public string DefaultServiceVersion { get; set; } + [Ps1Xml(Label = "ChangeFeed", Target = ViewControl.Table, ScriptBlock = "$_.ChangeFeed.Enabled", Position = 7)] public PSChangeFeed ChangeFeed { get; set; } [Ps1Xml(Label = "DeleteRetentionPolicy.Enabled", Target = ViewControl.Table, ScriptBlock = "$_.DeleteRetentionPolicy.Enabled", Position = 3)] [Ps1Xml(Label = "DeleteRetentionPolicy.Days", Target = ViewControl.Table, ScriptBlock = "$_.DeleteRetentionPolicy.Days", Position = 4)] public PSDeleteRetentionPolicy DeleteRetentionPolicy { get; set; } + [Ps1Xml(Label = "RestorePolicy.Enabled", Target = ViewControl.Table, ScriptBlock = "$_.RestorePolicy.Enabled", Position = 5)] + [Ps1Xml(Label = "RestorePolicy.Days", Target = ViewControl.Table, ScriptBlock = "$_.RestorePolicy.Days", Position = 6)] + public PSRestorePolicy RestorePolicy { get; set; } public PSCorsRules Cors { get; set; } public PSBlobServiceProperties() @@ -53,6 +57,7 @@ public PSBlobServiceProperties(BlobServiceProperties policy) this.Cors = policy.Cors is null ? null : new PSCorsRules(policy.Cors); this.DefaultServiceVersion = policy.DefaultServiceVersion; this.DeleteRetentionPolicy = policy.DeleteRetentionPolicy is null ? null : new PSDeleteRetentionPolicy(policy.DeleteRetentionPolicy); + this.RestorePolicy = policy.RestorePolicy is null ? null : new PSRestorePolicy(policy.RestorePolicy); this.ChangeFeed = policy.ChangeFeed is null ? null : new PSChangeFeed(policy.ChangeFeed); } public BlobServiceProperties ParseBlobServiceProperties() @@ -62,6 +67,7 @@ public BlobServiceProperties ParseBlobServiceProperties() Cors = this.Cors is null ? null : this.Cors.ParseCorsRules(), DefaultServiceVersion = this.DefaultServiceVersion, DeleteRetentionPolicy = this.DeleteRetentionPolicy is null ? null : this.DeleteRetentionPolicy.ParseDeleteRetentionPolicy(), + RestorePolicy = this.RestorePolicy is null ? null : this.RestorePolicy.ParseRestorePolicy(), ChangeFeed = this.ChangeFeed is null ? null : this.ChangeFeed.ParseChangeFeed() }; } @@ -144,6 +150,33 @@ public DeleteRetentionPolicy ParseDeleteRetentionPolicy() } } + /// + /// Wrapper of SDK type DeleteRetentionPolicy + /// + public class PSRestorePolicy + { + public bool? Enabled { get; set; } + public int? Days { get; set; } + + public PSRestorePolicy() + { + } + + public PSRestorePolicy(RestorePolicyProperties policy) + { + this.Enabled = policy.Enabled; + this.Days = policy.Days; + } + public RestorePolicyProperties ParseRestorePolicy() + { + return new RestorePolicyProperties + { + Enabled = this.Enabled is null ? false : this.Enabled.Value, + Days = this.Days + }; + } + } + /// /// Wrapper of SDK type CorsRules /// diff --git a/src/Storage/Storage.Management/Models/PSStorageAccount.cs b/src/Storage/Storage.Management/Models/PSStorageAccount.cs index 3378a9801a24..24b5efff68da 100644 --- a/src/Storage/Storage.Management/Models/PSStorageAccount.cs +++ b/src/Storage/Storage.Management/Models/PSStorageAccount.cs @@ -56,6 +56,7 @@ public PSStorageAccount(StorageModels.StorageAccount storageAccount) this.LargeFileSharesState = storageAccount.LargeFileSharesState; this.AzureFilesIdentityBasedAuth = storageAccount.AzureFilesIdentityBasedAuthentication is null ? null : new PSAzureFilesIdentityBasedAuthentication(storageAccount.AzureFilesIdentityBasedAuthentication); this.GeoReplicationStats = PSGeoReplicationStats.ParsePSGeoReplicationStats(storageAccount.GeoReplicationStats); + this.BlobRestoreStatus = storageAccount.BlobRestoreStatus is null ? null : new PSBlobRestoreStatus(storageAccount.BlobRestoreStatus); } [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.Table, Position = 1)] @@ -119,6 +120,8 @@ public PSStorageAccount(StorageModels.StorageAccount storageAccount) public PSNetworkRuleSet NetworkRuleSet { get; set; } + public PSBlobRestoreStatus BlobRestoreStatus { get; set; } + public PSGeoReplicationStats GeoReplicationStats { get; set; } public static PSStorageAccount Create(StorageModels.StorageAccount storageAccount, IStorageManagementClient client) diff --git a/src/Storage/Storage.Management/Storage.Management.csproj b/src/Storage/Storage.Management/Storage.Management.csproj index 35a4fb6aebac..f8d5dd238814 100644 --- a/src/Storage/Storage.Management/Storage.Management.csproj +++ b/src/Storage/Storage.Management/Storage.Management.csproj @@ -14,7 +14,7 @@ $(LegacyAssemblyPrefix)$(PsModuleName) - + diff --git a/src/Storage/Storage.Management/Storage.Management.format.ps1xml b/src/Storage/Storage.Management/Storage.Management.format.ps1xml index ab7fad637423..78622020575c 100644 --- a/src/Storage/Storage.Management/Storage.Management.format.ps1xml +++ b/src/Storage/Storage.Management/Storage.Management.format.ps1xml @@ -306,7 +306,15 @@ Left - + + + + Left + + + + Left + @@ -332,6 +340,14 @@ Left $_.DeleteRetentionPolicy.Days + + Left + $_.RestorePolicy.Enabled + + + Left + $_.RestorePolicy.Days + Left $_.ChangeFeed.Enabled @@ -394,8 +410,8 @@ Left - QuotaGiB - + QuotaGiB + Left $_.LastModifiedTime.ToString("u") @@ -405,5 +421,61 @@ + + Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus + + Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus + + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + Status + + + Left + RestoreId + + + Left + FailureReason + + + Left + $_.Parameters.TimeToRestore.ToString("o") + + + Left + if ($_.Parameters.BlobRanges[0] -ne $null) {if ($_.Parameters.BlobRanges[1] -ne $null) {'[' + $_.Parameters.BlobRanges[0].StartRange + ' -> ' + $_.Parameters.BlobRanges[0].EndRange + ',...]'} else {'[' + $_.Parameters.BlobRanges[0].StartRange + ' -> ' + $_.Parameters.BlobRanges[0].EndRange + ']'}} else {$null} + + + + + + \ No newline at end of file diff --git a/src/Storage/Storage.Management/StorageAccount/GetAzureStorageAccount.cs b/src/Storage/Storage.Management/StorageAccount/GetAzureStorageAccount.cs index 3fd3fac8ee14..77aa2f7da86d 100644 --- a/src/Storage/Storage.Management/StorageAccount/GetAzureStorageAccount.cs +++ b/src/Storage/Storage.Management/StorageAccount/GetAzureStorageAccount.cs @@ -26,6 +26,7 @@ public class GetAzureStorageAccountCommand : StorageAccountBaseCmdlet { protected const string ResourceGroupParameterSet = "ResourceGroupParameterSet"; protected const string AccountNameParameterSet = "AccountNameParameterSet"; + protected const string BlobRestoreStatusParameterSet = "BlobRestoreStatusParameterSet"; [Parameter( Position = 0, @@ -39,6 +40,12 @@ public class GetAzureStorageAccountCommand : StorageAccountBaseCmdlet ParameterSetName = AccountNameParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource Group Name.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = BlobRestoreStatusParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Resource Group Name.")] [ResourceGroupCompleter] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } @@ -49,6 +56,12 @@ public class GetAzureStorageAccountCommand : StorageAccountBaseCmdlet ValueFromPipelineByPropertyName = true, ParameterSetName = AccountNameParameterSet, HelpMessage = "Storage Account Name.")] + [Parameter( + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = BlobRestoreStatusParameterSet, + HelpMessage = "Storage Account Name.")] [Alias(StorageAccountNameAlias, AccountNameAlias)] [ValidateNotNullOrEmpty] public string Name { get; set; } @@ -59,6 +72,12 @@ public class GetAzureStorageAccountCommand : StorageAccountBaseCmdlet HelpMessage = "Get the GeoReplicationStats of the Storage account.")] [ValidateNotNullOrEmpty] public SwitchParameter IncludeGeoReplicationStats { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = BlobRestoreStatusParameterSet, + HelpMessage = "Get the BlobRestoreStatus of the Storage account.")] + public SwitchParameter IncludeBlobRestoreStatus { get; set; } public override void ExecuteCmdlet() { @@ -83,11 +102,16 @@ public override void ExecuteCmdlet() } else { + // ParameterSet ensure can only set one of the following 2 parameters StorageAccountExpand? expandproperties = null; - if (IncludeGeoReplicationStats) + if (this.IncludeGeoReplicationStats) { expandproperties = StorageAccountExpand.GeoReplicationStats; } + if (this.IncludeBlobRestoreStatus) + { + expandproperties = StorageAccountExpand.BlobRestoreStatus; + } var storageAccount = this.StorageClient.StorageAccounts.GetProperties( this.ResourceGroupName, diff --git a/src/Storage/Storage.Management/StorageAccount/NewAzStorageBlobRangeToRestore.cs b/src/Storage/Storage.Management/StorageAccount/NewAzStorageBlobRangeToRestore.cs new file mode 100644 index 000000000000..c265cc8fe783 --- /dev/null +++ b/src/Storage/Storage.Management/StorageAccount/NewAzStorageBlobRangeToRestore.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Management.Storage.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageBlobRangeToRestore"), OutputType(typeof(PSBlobRestoreRange))] + public class NewAzureStorageBlobRangeToRestoreCommand : StorageAccountBaseCmdlet + { + [Parameter(Mandatory = false, + HelpMessage = "Specify the blob restore start range. Leave it as empty to restore from begining.")] + [ValidateNotNull] + public string StartRange { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = "Specify the blob restore End range. Leave it as empty to restore to the end.")] + [ValidateNotNull] + public string EndRange { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + PSBlobRestoreRange range = new PSBlobRestoreRange(this.StartRange, this.EndRange); + + WriteObject(range); + } + } +} diff --git a/src/Storage/Storage.Management/StorageAccount/RestoreAzStorageBlobRange.cs b/src/Storage/Storage.Management/StorageAccount/RestoreAzStorageBlobRange.cs new file mode 100644 index 000000000000..96a05206d379 --- /dev/null +++ b/src/Storage/Storage.Management/StorageAccount/RestoreAzStorageBlobRange.cs @@ -0,0 +1,121 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Management.Storage.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using System; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageBlobRange", SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSBlobRestoreStatus))] + public class RestoreAzureStorageBlobRangeCommand : StorageAccountBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// Account ResourceId parameter set + /// + private const string AccountResourceIdParameterSet = "AccountResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Storage Account Resource Id.", + ParameterSetName = AccountResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The Time to Restore Blob.")] + [ValidateNotNull] + public DateTime TimeToRestore { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The blob range to Restore.")] + [ValidateNotNull] + public PSBlobRestoreRange[] BlobRestoreRange { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case AccountResourceIdParameterSet: + ResourceIdentifier accountResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = accountResource.ResourceGroupName; + this.StorageAccountName = accountResource.ResourceName; + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + + if (ShouldProcess(this.StorageAccountName, "Restore Blob Range")) + { + BlobRestoreStatus status = this.StorageClient.StorageAccounts.RestoreBlobRanges( + this.ResourceGroupName, + this.StorageAccountName, + this.TimeToRestore, + PSBlobRestoreRange.ParseBlobRestoreRanges(this.BlobRestoreRange)); + + WriteObject(new PSBlobRestoreStatus(status)); + } + } + } +} diff --git a/src/Storage/Storage.Management/help/Az.Storage.md b/src/Storage/Storage.Management/help/Az.Storage.md index 1e3da90f7c9e..49155edb0c04 100644 --- a/src/Storage/Storage.Management/help/Az.Storage.md +++ b/src/Storage/Storage.Management/help/Az.Storage.md @@ -26,6 +26,9 @@ Closes file handles of a file share, a file directory or a file. ### [Disable-AzStorageBlobDeleteRetentionPolicy](Disable-AzStorageBlobDeleteRetentionPolicy.md) Disable delete retention policy for the Azure Storage Blob service. +### [Disable-AzStorageBlobRestorePolicy](Disable-AzStorageBlobRestorePolicy.md) +Disables Blob Restore Policy on a Storage account. + ### [Disable-AzStorageDeleteRetentionPolicy](Disable-AzStorageDeleteRetentionPolicy.md) Disable delete retention policy for the Azure Storage Blob service. @@ -35,6 +38,9 @@ Disable static website for the Azure Storage account. ### [Enable-AzStorageBlobDeleteRetentionPolicy](Enable-AzStorageBlobDeleteRetentionPolicy.md) Enable delete retention policy for the Azure Storage Blob service. +### [Enable-AzStorageBlobRestorePolicy](Enable-AzStorageBlobRestorePolicy.md) +Enables Blob Restore Policy on a Storage account. + ### [Enable-AzStorageDeleteRetentionPolicy](Enable-AzStorageDeleteRetentionPolicy.md) Enable delete retention policy for the Azure Storage Blob service. @@ -173,6 +179,9 @@ Creates a ManagementPolicy rule object, which can be used in Set-AzStorageAccoun ### [New-AzStorageAccountSASToken](New-AzStorageAccountSASToken.md) Creates an account-level SAS token. +### [New-AzStorageBlobRangeToRestore](New-AzStorageBlobRangeToRestore.md) +Creates a Blob Range object to restores a Storage account. + ### [New-AzStorageBlobSASToken](New-AzStorageBlobSASToken.md) Generates a SAS token for an Azure storage blob. @@ -281,6 +290,9 @@ Removes a storage table. ### [Remove-AzStorageTableStoredAccessPolicy](Remove-AzStorageTableStoredAccessPolicy.md) Removes a stored access policy from an Azure storage table. +### [Restore-AzStorageBlobRange](Restore-AzStorageBlobRange.md) +Restores a Storage account for specific Blob Ranges. + ### [Revoke-AzStorageAccountUserDelegationKeys](Revoke-AzStorageAccountUserDelegationKeys.md) Revoke all User Delegation keys of a Storage account. diff --git a/src/Storage/Storage.Management/help/Disable-AzStorageBlobRestorePolicy.md b/src/Storage/Storage.Management/help/Disable-AzStorageBlobRestorePolicy.md new file mode 100644 index 000000000000..f83a693681a4 --- /dev/null +++ b/src/Storage/Storage.Management/help/Disable-AzStorageBlobRestorePolicy.md @@ -0,0 +1,183 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/disable-azstorageblobrestorepolicy +schema: 2.0.0 +--- + +# Disable-AzStorageBlobRestorePolicy + +## SYNOPSIS +Disables Blob Restore Policy on a Storage account. + +## SYNTAX + +### AccountName (Default) +``` +Disable-AzStorageBlobRestorePolicy [-ResourceGroupName] [-StorageAccountName] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### AccountObject +``` +Disable-AzStorageBlobRestorePolicy -StorageAccount [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### BlobServicePropertiesResourceId +``` +Disable-AzStorageBlobRestorePolicy [-ResourceId] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Disable-AzStorageBlobRestorePolicy** cmdlet disables Blob Restore Policy for the Azure Storage Blob service. + +## EXAMPLES + +### Example 1: Disables Blob Restore Policy for the Azure Storage Blob service on a Storage account +```powershell +PS C:\> Disable-AzStorageBlobRestorePolicy -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" +``` + +This command Disables Blob Restore Policy for the Azure Storage Blob service on a Storage account. + +## 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 +``` + +### -PassThru +Display ServiceProperties + +```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 +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Input a Storage account Resource Id, or a Blob service properties Resource Id. + +```yaml +Type: System.String +Parameter Sets: BlobServicePropertiesResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName, Name + +Required: True +Position: 1 +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.Storage.Models.PSStorageAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Enable-AzStorageBlobRestorePolicy.md b/src/Storage/Storage.Management/help/Enable-AzStorageBlobRestorePolicy.md new file mode 100644 index 000000000000..4ea98b80c2a0 --- /dev/null +++ b/src/Storage/Storage.Management/help/Enable-AzStorageBlobRestorePolicy.md @@ -0,0 +1,216 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/enable-azstorageblobrestorepolicy +schema: 2.0.0 +--- + +# Enable-AzStorageBlobRestorePolicy + +## SYNOPSIS +Enables Blob Restore Policy on a Storage account. + +## SYNTAX + +### AccountName (Default) +``` +Enable-AzStorageBlobRestorePolicy [-ResourceGroupName] [-StorageAccountName] + -RestoreDays [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### AccountObject +``` +Enable-AzStorageBlobRestorePolicy -StorageAccount -RestoreDays [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### BlobServicePropertiesResourceId +``` +Enable-AzStorageBlobRestorePolicy [-ResourceId] -RestoreDays [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Enable-AzStorageBlobRestorePolicy** cmdlet enables Blob Restore Policy for the Azure Storage Blob service. + +## EXAMPLES + +### Example 1: Enables Blob Restore Policy for the Azure Storage Blob service on a Storage account +```powershell +PS C:\> Enable-AzStorageBlobDeleteRetentionPolicy -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" $accountName -RetentionDays 5 + +PS C:\> Update-AzStorageBlobServiceProperty -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" -EnableChangeFeed $true + +StorageAccountName ResourceGroupName DefaultServiceVersion DeleteRetentionPolicy.Enabled DeleteRetentionPolicy.Days RestorePolicy.Enabled RestorePolicy.Days ChangeFeed +------------------ ----------------- --------------------- ----------------------------- -------------------------- --------------------- ------------------ ---------- +mystorageaccount myresourcegoup True 5 False True + +PS C:\> Enable-AzStorageBlobRestorePolicy -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" -RestoreDays 4 + +PS C:\> Get-AzStorageBlobServiceProperty -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" + +StorageAccountName ResourceGroupName DefaultServiceVersion DeleteRetentionPolicy.Enabled DeleteRetentionPolicy.Days RestorePolicy.Enabled RestorePolicy.Days ChangeFeed +------------------ ----------------- --------------------- ----------------------------- -------------------------- --------------------- ------------------ ---------- +mystorageaccount myresourcegoup True 5 True 4 True +``` + +This command first enable Blob softdelet and changefeed, then enables Blob Restore Policy, finally check the setting in Blob service properties. +The Blob RestoreDays much be smaller than Blob delete RetentionDays. +ChangeFeed must be enabled before enable lob Restore Policy. +If softdelete and Changefeed are just enabled, need wait for some time for server to handle the setting, before enable Blob restore policy. + +## 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 +``` + +### -PassThru +Display ServiceProperties + +```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 +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Input a Storage account Resource Id, or a Blob service properties Resource Id. + +```yaml +Type: System.String +Parameter Sets: BlobServicePropertiesResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RestoreDays +Sets the number of days for the blob can be restored.. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: Days + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName, Name + +Required: True +Position: 1 +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.Storage.Models.PSStorageAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Get-AzStorageAccount.md b/src/Storage/Storage.Management/help/Get-AzStorageAccount.md index b29db76b3e22..cec10f6c0e92 100644 --- a/src/Storage/Storage.Management/help/Get-AzStorageAccount.md +++ b/src/Storage/Storage.Management/help/Get-AzStorageAccount.md @@ -25,6 +25,12 @@ Get-AzStorageAccount [-ResourceGroupName] [-Name] [-IncludeGeo [-DefaultProfile ] [] ``` +### BlobRestoreStatusParameterSet +``` +Get-AzStorageAccount [-ResourceGroupName] [-Name] [-IncludeBlobRestoreStatus] + [-DefaultProfile ] [] +``` + ## DESCRIPTION The **Get-AzStorageAccount** cmdlet gets a specified Storage account or all of the Storage accounts in a resource group or the subscription. @@ -51,6 +57,19 @@ PS C:\>Get-AzStorageAccount This command gets all of the Storage accounts in the subscription. +### Example 4: Get a Storage accounts with its blob restore status +``` +PS C:\> $account = Get-AzStorageAccount -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" -IncludeBlobRestoreStatus + +PS C:\> $account.BlobRestoreStatus + +Status RestoreId FailureReason Parameters.TimeToRestore Parameters.BlobRanges +------ --------- ------------- ------------------------ --------------------- +InProgress a70cd4a1-f223-4c86-959f-cc13eb4795a8 2020-02-10T13:45:04.7155962Z [container1/blob1 -> container2/blob2] +``` + +This command gets a Storage accounts with its blob restore status, and show the blob restore status. + ## PARAMETERS ### -DefaultProfile @@ -68,6 +87,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -IncludeBlobRestoreStatus +Get the BlobRestoreStatus of the Storage account. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: BlobRestoreStatusParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IncludeGeoReplicationStats Get the GeoReplicationStats of the Storage account. @@ -88,7 +122,7 @@ Specifies the name of the Storage account to get. ```yaml Type: System.String -Parameter Sets: AccountNameParameterSet +Parameter Sets: AccountNameParameterSet, BlobRestoreStatusParameterSet Aliases: StorageAccountName, AccountName Required: True @@ -115,7 +149,7 @@ Accept wildcard characters: False ```yaml Type: System.String -Parameter Sets: AccountNameParameterSet +Parameter Sets: AccountNameParameterSet, BlobRestoreStatusParameterSet Aliases: Required: True diff --git a/src/Storage/Storage.Management/help/New-AzStorageBlobRangeToRestore.md b/src/Storage/Storage.Management/help/New-AzStorageBlobRangeToRestore.md new file mode 100644 index 000000000000..0646affb3f83 --- /dev/null +++ b/src/Storage/Storage.Management/help/New-AzStorageBlobRangeToRestore.md @@ -0,0 +1,117 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/new-azstorageblobrangetorestore +schema: 2.0.0 +--- + +# New-AzStorageBlobRangeToRestore + +## SYNOPSIS +Creates a Blob Range object to restores a Storage account. + +## SYNTAX + +``` +New-AzStorageBlobRangeToRestore [-StartRange ] [-EndRange ] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **New-AzStorageBlobRangeToRestore** cmdlet creates a Blob range object, which can be used in Restore-AzStorageBlobRange. + +## EXAMPLES + +### Example 1: Creates a blob range to restore +```powershell +PS C:\> $range = New-AzStorageBlobRangeToRestore -StartRange container1/blob1 -EndRange container2/blob2 +``` + +This command creates a blob range to restore, which starts at container1/blob1 (include), and ends at container2/blob2 (exclude). + +### Example 2: Creates a blob range which will restore from first blob in alphabetical order, to a specific blob (exclude) +```powershell +PS C:\> $range = New-AzStorageBlobRangeToRestore -StartRange "" -EndRange container2/blob2 +``` + +This command creates a blob range which will restore from first blob of alphabetical order, to a specific blob container2/blob2 (exclude) + +### Example 3: Creates a blob range which will restore from a specific blob (include), to the last blob in alphabetical order +```powershell +PS C:\> $range = New-AzStorageBlobRangeToRestore -StartRange container1/blob1 -EndRange "" +``` + +This command creates a blob range which will restore from a specific blob container1/blob1 (include), to the last blob in alphabetical order. + +### Example 4: Creates a blob range which will restore all blobs +```powershell +PS C:\> $range = New-AzStorageBlobRangeToRestore -StartRange "" -EndRange "" +``` + +This command creates a blob range which will restore all blobs. + +## 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 +``` + +### -EndRange +Specify the blob restore End range. +End range will be excluded in restore blobs. +Set it as empty strng to restore to the end. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StartRange +Specify the blob restore start range. +Start range will be included in restore blobs. +Set it as empty string to restore from begining. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +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 + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md b/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md new file mode 100644 index 000000000000..30d445a45ebb --- /dev/null +++ b/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md @@ -0,0 +1,245 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/restore-azstorageblobrange +schema: 2.0.0 +--- + +# Restore-AzStorageBlobRange + +## SYNOPSIS +Restores a Storage account for specific blob ranges. + +## SYNTAX + +### AccountName (Default) +``` +Restore-AzStorageBlobRange [-ResourceGroupName] [-StorageAccountName] + -TimeToRestore [-BlobRestoreRange ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### AccountResourceId +``` +Restore-AzStorageBlobRange [-ResourceId] -TimeToRestore + [-BlobRestoreRange ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### AccountObject +``` +Restore-AzStorageBlobRange -StorageAccount -TimeToRestore + [-BlobRestoreRange ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **Restore-AzStorageBlobRange** cmdlet restores blobs in a Storage account for specific blob ranges. +The start range is included, and the end range is excluded in blob restore. + +## EXAMPLES + +### Example 1: Restores blobs in a Storage account with specific blob ranges +```powershell +PS C:\> $range1 = New-AzStorageBlobRangeToRestore -StartRange container1/blob1 -EndRange container2/blob2 +PS C:\> $range2 = New-AzStorageBlobRangeToRestore -StartRange container3/blob3 -EndRange container4/blob4 +PS C:\> Restore-AzStorageBlobRange -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" -TimeToRestore (Get-Date).AddDays(-1) -BlobRestoreRange $range1,$range2 + +Status RestoreId FailureReason Parameters.TimeToRestore Parameters.BlobRanges +------ --------- ------------- ------------------------ --------------------- +Complete 6ca55a8b-fca0-461a-8e4c-13927a9707e6 2020-02-10T13:58:44.6841810Z [container1/blob1 -> container2/blob2,...] +``` + +This command first creates 2 blob ranges, then restores blobs in a Storage account with the 2 blob ranges from 1 day ago. + +### Example 2: Restores all blobs in a Storage account in the backend +```powershell +PS C:\> $range = New-AzStorageBlobRangeToRestore -StartRange "" -EndRange "" +PS C:\> $job = Restore-AzStorageBlobRange -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" -TimeToRestore (Get-Date).AddMinutes(-30) -BlobRestoreRange $range -asjob +PS C:\> $job | Wait-Job +``` + +This command first creates a blob range which can restore all blobs, then restores all blobs in a Storage account from 30 minutes ago. Since restore blobs might take a long time, run it in the backend with -Asjob parameter, and then wait for the job complete. + +### Example 3: Restores blobs by input blob ranges directly +```powershell +PS C:\> Restore-AzStorageBlobRange -ResourceGroupName "myresourcegoup" -StorageAccountName "mystorageaccount" ` + -TimeToRestore (Get-Date).AddSeconds(-1) ` + -BlobRestoreRange @{StartRange="aaa/abc";EndRange="bbb/abc"},@{StartRange="bbb/acc";EndRange=""} + +Status RestoreId FailureReason Parameters.TimeToRestore Parameters.BlobRanges +------ --------- ------------- ------------------------ --------------------- +Complete d66d1d02-6e48-47ef-b516-0155dd8319c6 2020-02-10T14:17:46.8189116Z [aaa/abc -> bbb/abc,...] +``` + +This command restores blobs in a Storage account from 1 day ago, by input 2 blob ranges directly to the Restore-AzStorageBlobRange cmdlet. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```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 +``` + +### -BlobRestoreRange +The blob range to Restore. +If not specify this parameter, will restore all blobs. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[] +Parameter Sets: (All) +Aliases: + +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 +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Storage Account Resource Id. + +```yaml +Type: System.String +Parameter Sets: AccountResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TimeToRestore +The Time to Restore Blob. + +```yaml +Type: System.DateTime +Parameter Sets: (All) +Aliases: + +Required: True +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 + +### System.String + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus + +## NOTES + +## RELATED LINKS